SF patch [ 708702 ] Wide character filename support for BCC
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20377 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -47,8 +47,6 @@
|
|||||||
typedef long off_t;
|
typedef long off_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
|
#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
|
||||||
//
|
//
|
||||||
// VisualAge C++ V4.0 cannot have any external linkage const decs
|
// VisualAge C++ V4.0 cannot have any external linkage const decs
|
||||||
@@ -92,11 +90,8 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
|
|||||||
|
|
||||||
#if wxUSE_UNICODE
|
#if wxUSE_UNICODE
|
||||||
#if wxUSE_UNICODE_MSLU
|
#if wxUSE_UNICODE_MSLU
|
||||||
#ifdef __BORLANDC__
|
#define wxOpen wxMSLU__wopen
|
||||||
#define wxOpen open
|
|
||||||
#else
|
|
||||||
#define wxOpen _open
|
|
||||||
#endif
|
|
||||||
#define wxAccess wxMSLU__waccess
|
#define wxAccess wxMSLU__waccess
|
||||||
#define wxMkDir wxMSLU__wmkdir
|
#define wxMkDir wxMSLU__wmkdir
|
||||||
#define wxRmDir wxMSLU__wrmdir
|
#define wxRmDir wxMSLU__wrmdir
|
||||||
@@ -109,7 +104,11 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
|
|||||||
#define wxStat _wstat
|
#define wxStat _wstat
|
||||||
#endif
|
#endif
|
||||||
#else // !wxUSE_UNICODE
|
#else // !wxUSE_UNICODE
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
#define wxOpen open
|
||||||
|
#else
|
||||||
#define wxOpen _open
|
#define wxOpen _open
|
||||||
|
#endif
|
||||||
#define wxAccess _access
|
#define wxAccess _access
|
||||||
#define wxMkDir _mkdir
|
#define wxMkDir _mkdir
|
||||||
#define wxRmDir _rmdir
|
#define wxRmDir _rmdir
|
||||||
|
Reference in New Issue
Block a user