// Digital Mars doesn't)
#include "wx/msw/private.h"
- #undef __HUGEFILES_SUPPORTED
+ #undef wxHAS_HUGE_FILES
#if defined(__MINGW32__)
- #define __HUGEFILES_SUPPORTED 1
+ #define wxHAS_HUGE_FILES 1
#elif defined(__MWERKS__)
- #define __HUGEFILES_SUPPORTED 0
+ #define wxHAS_HUGE_FILES 0
#elif defined(__DMC__)
- #define __HUGEFILES_SUPPORTED 0
+ #define wxHAS_HUGE_FILES 0
#elif ((_INTEGRAL_MAX_BITS >= 64) || defined(_LARGE_FILES))
- #define __HUGEFILES_SUPPORTED 1
+ #define wxHAS_HUGE_FILES 1
#else
- #define __HUGEFILES_SUPPORTED 0
+ #define wxHAS_HUGE_FILES 0
#endif
// functions
#define _tell tell
#endif
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
typedef wxLongLong_t wxFileOffset;
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
#else
#define wxWrite _write
#endif
#endif
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
#define wxSeek _lseeki64
#define wxLseek _lseeki64
#define wxTell _telli64
#define wxAccess wxMSLU__waccess
#define wxMkDir wxMSLU__wmkdir
#define wxRmDir wxMSLU__wrmdir
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
#define wxStat wxMSLU__wstati64
#else
#define wxStat wxMSLU__wstat
#define wxAccess _waccess
#define wxMkDir _wmkdir
#define wxRmDir _wrmdir
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
#define wxStat _wstati64
#else
#define wxStat _wstat
#else
#define wxRmDir _rmdir
#endif
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
#define wxStat _stati64
#else
#define wxStat _stat
// types: notice that Watcom is the only compiler to have a wide char
// version of struct stat as well as a wide char stat function variant
- #if __HUGEFILES_SUPPORTED
+ #if wxHAS_HUGE_FILES
#if wxUSE_UNICODE && defined(__WATCOMC__)
#define wxStructStat struct _wstati64
#else
#endif
// constants (unless already defined by the user code)
- #if !defined(O_RDONLY) && !defined(__BORLANDC__) && !defined(__WATCOMC__)
- #define O_RDONLY _O_RDONLY
- #define O_WRONLY _O_WRONLY
- #define O_RDWR _O_RDWR
- #define O_EXCL _O_EXCL
- #define O_CREAT _O_CREAT
- #define O_BINARY _O_BINARY
- #endif
-
#if !defined(__BORLANDC__) && !defined(__WATCOMC__)
- #define S_IFMT _S_IFMT
- #define S_IFDIR _S_IFDIR
- #define S_IFREG _S_IFREG
- #endif // O_RDONLY
+ #ifndef O_RDONLY
+ #define O_RDONLY _O_RDONLY
+ #define O_WRONLY _O_WRONLY
+ #define O_RDWR _O_RDWR
+ #define O_EXCL _O_EXCL
+ #define O_CREAT _O_CREAT
+ #define O_BINARY _O_BINARY
+ #endif
+
+ #ifndef S_IFMT
+ #define S_IFMT _S_IFMT
+ #define S_IFDIR _S_IFDIR
+ #define S_IFREG _S_IFREG
+ #endif
+ #endif
// It's a private define, undefine it so nobody gets tempted to use it
- #undef __HUGEFILES_SUPPORTED
+ #undef wxHAS_HUGE_FILES
#else // Unix platforms using configure
typedef off_t wxFileOffset;
#ifdef _LARGE_FILES
// wxFileConfig::Flush() for example
wxUmaskChanger(int umaskNew)
{
- m_umaskOld = umaskNew == -1 ? -1 : umask((mode_t)umaskNew);
+ m_umaskOld = umaskNew == -1 ? -1 : (int)umask((mode_t)umaskNew);
}
~wxUmaskChanger()