wxArchiveFSHandler switches on simulated seeking for compatibility with

previous versions. Still overridden by wxFS_SEEKABLE.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2006-11-19 02:11:40 +00:00
parent 82fb2b744f
commit 5c80cef4bf
3 changed files with 18 additions and 6 deletions

View File

@@ -1374,7 +1374,7 @@ void wxZipInputStream::Init()
m_signature = 0;
m_TotalEntries = 0;
m_lasterror = m_parent_i_stream->GetLastError();
#if WXWIN_COMPATIBILITY_2_6 && wxUSE_FFILE
#if WXWIN_COMPATIBILITY_2_6
m_allowSeeking = false;
#endif
}
@@ -1883,7 +1883,7 @@ size_t wxZipInputStream::OnSysRead(void *buffer, size_t size)
return count;
}
#if WXWIN_COMPATIBILITY_2_6 && wxUSE_FFILE
#if WXWIN_COMPATIBILITY_2_6
// Borrowed from VS's zip stream (c) 1999 Vaclav Slavik
//
@@ -1948,7 +1948,7 @@ wxFileOffset wxZipInputStream::OnSysSeek(wxFileOffset seek, wxSeekMode mode)
return pos;
}
#endif // WXWIN_COMPATIBILITY_2_6 && wxUSE_FFILE
#endif // WXWIN_COMPATIBILITY_2_6
/////////////////////////////////////////////////////////////////////////////