Backport stdio large file support for VC++ and mingw.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@63300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2010-01-28 21:36:09 +00:00
parent 7749dce6bb
commit 1132633751
4 changed files with 38 additions and 19 deletions

View File

@@ -256,8 +256,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