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,6 +279,17 @@ enum wxFileKind
#define wxStat wxMSLU__wstat #define wxStat wxMSLU__wstat
#endif #endif
#else // !wxUSE_UNICODE_MSLU #else // !wxUSE_UNICODE_MSLU
#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 wxOpen _wopen #define wxOpen _wopen
#define wxAccess _waccess #define wxAccess _waccess
#define wxMkDir _wmkdir #define wxMkDir _wmkdir
@@ -288,6 +299,7 @@ enum wxFileKind
#else #else
#define wxStat _wstat #define wxStat _wstat
#endif #endif
#endif
#endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU
#else // !wxUSE_UNICODE #else // !wxUSE_UNICODE
#define wxOpen wxPOSIX_IDENT(open) #define wxOpen wxPOSIX_IDENT(open)