X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..1b68f1da6e626313678c5e75bc1915af80480d12:/include/wx/ffile.h?ds=sidebyside diff --git a/include/wx/ffile.h b/include/wx/ffile.h index 8f8ffde014..0236e154bf 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -78,13 +78,13 @@ public: // file pointer operations (return ofsInvalid on failure) // move ptr ofs bytes related to start/current pos/end of file - bool Seek(long ofs, wxSeekMode mode = wxFromStart); + bool Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart); // move ptr to ofs bytes before the end - bool SeekEnd(long ofs = 0) { return Seek(ofs, wxFromEnd); } + bool SeekEnd(wxFileOffset ofs = 0) { return Seek(ofs, wxFromEnd); } // get current position in the file - size_t Tell() const; + wxFileOffset Tell() const; // get current file length - size_t Length() const; + wxFileOffset Length() const; // simple accessors: note that Eof() and Error() may only be called if // IsOpened()!