]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/file.h
wxMac uses wxStandardPathsCF to mean wxStandardPaths in its wxBase
[wxWidgets.git] / include / wx / file.h
index e4ed0193f2700ddc7a1bff6083493aae7f51dc5c..b767d0a4a09c4ead4b5a6e5e0f4d3ad92b5ec674 100644 (file)
@@ -110,13 +110,13 @@ public:
 
   // file pointer operations (return ofsInvalid on failure)
     // move ptr ofs bytes related to start/current off_t/end of file
-  wxFileOffset Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart);
+  wxFileSize_t Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart);
     // move ptr to ofs bytes before the end
-  wxFileOffset SeekEnd(wxFileOffset ofs = 0) { return Seek(ofs, wxFromEnd); }
+  wxFileSize_t SeekEnd(wxFileOffset ofs = 0) { return Seek(ofs, wxFromEnd); }
     // get current off_t
-  wxFileOffset Tell() const;
+  wxFileSize_t Tell() const;
     // get current file length
-  wxFileOffset Length() const;
+  wxFileSize_t Length() const;
 
   // simple accessors
     // is file opened?