// detect compilers which have support for huge files (currently only
// Digital Mars doesn't)
+ #ifndef __PALMOS__
#include "wx/msw/private.h"
+ #endif
#undef wxHAS_HUGE_FILES
#if defined(__MINGW32__)
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
#else
typedef off_t wxFileOffset;
- #define wxFileOffsetFmtSpec _("")
#endif
#define wxClose _close
#endif
// constants (unless already defined by the user code)
- #if !defined(__BORLANDC__) && !defined(__WATCOMC__)
+ #if !defined(__BORLANDC__) && !defined(__WATCOMC__) && !defined(__PALMOS__)
#ifndef O_RDONLY
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
typedef off_t wxFileOffset;
#ifdef _LARGE_FILES
#define wxFileOffsetFmtSpec wxLongLongFmtSpec
+ wxCOMPILE_TIME_ASSERT( sizeof(off_t) == sizeof(wxLongLong_t),
+ BadFileSizeType );
#else
#define wxFileOffsetFmtSpec _T("")
#endif
// VisualAge C++ V4.0 cannot have any external linkage const decs
// in headers included by more than one primary source
//
-extern const wxFileOffset wxInvalidOffset;
+extern const int wxInvalidOffset;
#else
-const wxFileOffset wxInvalidOffset = (wxFileOffset)-1;
+const int wxInvalidOffset = -1;
#endif
// ----------------------------------------------------------------------------