Borland fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2006-10-29 16:48:41 +00:00
parent 489a164c1c
commit 5c746f384e

View File

@@ -279,14 +279,26 @@ enum wxFileKind
#define wxStat wxMSLU__wstat
#endif
#else // !wxUSE_UNICODE_MSLU
#define wxOpen _wopen
#define wxAccess _waccess
#define wxMkDir _wmkdir
#define wxRmDir _wrmdir
#ifdef wxHAS_HUGE_FILES
#define wxStat _wstati64
#ifdef __BORLANDC__
#define wxOpen _wopen
#define wxAccess _waccess
#define wxMkDir _mkdir
#define wxRmDir _rmdir
#ifdef wxHAS_HUGE_FILES
#define wxStat _wstati64
#else
#define wxStat _wstat
#endif
#else
#define wxStat _wstat
#define wxOpen _wopen
#define wxAccess _waccess
#define wxMkDir _wmkdir
#define wxRmDir _wrmdir
#ifdef wxHAS_HUGE_FILES
#define wxStat _wstati64
#else
#define wxStat _wstat
#endif
#endif
#endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
#else // !wxUSE_UNICODE