Add support for large stdio files for VC 8+. What versions of the other Windows

compilers?


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2009-12-22 21:22:59 +00:00
parent 3e6d8c3118
commit 224d978ffb
3 changed files with 32 additions and 19 deletions

View File

@@ -268,8 +268,8 @@ wxOutputStream *LargeFileTest_wxFFile::MakeOutStream(const wxString& name) const
bool LargeFileTest_wxFFile::HasLFS() const
{
#ifdef HAVE_FSEEKO
return (wxFileOffset)0xffffffff > 0;
#ifdef wxHAS_LARGE_FFILES
return true;
#else
return false;
#endif