git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42305
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// doesn't have large file support with any Windows compiler (even
// Win64 ones).
#if wxUSE_FILE
// doesn't have large file support with any Windows compiler (even
// Win64 ones).
#if wxUSE_FILE
- #define WXFILE_LARGEFILE 1
+ #define wxHAS_LARGE_FILES
BadFileSizeType );
// wxFile is present and supports large files
#ifdef wxUSE_FILE
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
#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("")
#endif
#else
#define wxFileOffsetFmtSpec _T("")
// Prefer wxFFile unless wxFile has large file support but wxFFile does not.
//
// 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
typedef wxFFile wxBFFile;
static const bool wxBadSeek = false;
#else