Digital Mars compilation warnings and Unicode fixes (patch 884587)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-02-07 15:07:08 +00:00
parent b9b1f368fe
commit ba1e9d6ced
6 changed files with 21 additions and 4 deletions

View File

@@ -75,6 +75,7 @@ enum wxSeekMode
#if defined( __VISUALC__ ) \
|| ( defined(__MINGW32__) && !defined(__WINE__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \
|| ( defined(__MWERKS__) && defined(__WXMSW__) ) \
|| ( defined(__DMC__) && defined(__WXMSW__) ) \
|| ( defined(__WATCOMC__) && defined(__WXMSW__) )
// functions
#if defined(__BORLANDC__) || defined(__WATCOMC__)
@@ -163,6 +164,9 @@ enum wxSeekMode
#if defined(__MWERKS__) && defined(macintosh)
#include <sys/stat.h>
#endif
#if defined(__DMC__)
typedef unsigned long mode_t;
#endif
WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf );
WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode );
WXDLLIMPEXP_BASE int wxOpen( const wxChar *pathname, int flags, mode_t mode );