Rename WX[F]FILE_LARGEFILE to wxHAS_LARGE_[F]FILES.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2006-10-23 21:46:13 +00:00
parent 8d23231721
commit 82b99cf952
2 changed files with 4 additions and 4 deletions

View File

@@ -314,7 +314,7 @@ enum wxFileKind
// 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
@@ -328,11 +328,11 @@ enum wxFileKind
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("")

View File

@@ -27,7 +27,7 @@
// 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