// doesn't have large file support with any Windows compiler (even
// Win64 ones).
#if wxUSE_FILE
- #define WXFILE_LARGEFILE 1
+ #define wxHAS_LARGE_FILES
#endif
#endif
BadFileSizeType );
// wxFile is present and supports large files
#ifdef wxUSE_FILE
- #define WXFILE_LARGEFILE
+ #define wxHAS_LARGE_FILES
#endif
// wxFFile is present and supports large files
#if SIZEOF_LONG == 8 || defined HAVE_FSEEKO
- #define WXFFILE_LARGEFILE
+ #define wxHAS_LARGE_FFILES
#endif
#else
#define wxFileOffsetFmtSpec _T("")
// Prefer wxFFile unless wxFile has large file support but wxFFile does not.
//
-#if wxUSE_FFILE && (defined WXFFILE_LARGEFILE || !defined WXFILE_LARGEFILE)
+#if wxUSE_FFILE && (defined wxHAS_LARGE_FFILES || !defined wxHAS_LARGE_FILES)
typedef wxFFile wxBFFile;
static const bool wxBadSeek = false;
#else