]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/file.h
Set TOOLKIT_LOWERCASE correctly for the various flavors of wxOSX
[wxWidgets.git] / interface / wx / file.h
index 2522be80e1d5b39b0794065d57fd8e538b8badcd..4f693d2dea6b41a1b0b13f2c0f9351665e5d28a1 100644 (file)
@@ -297,7 +297,7 @@ public:
     /**
         Closes the file.
     */
-    void Close();
+    bool Close();
 
     /**
         Creates a file for writing.
@@ -378,7 +378,7 @@ public:
             An OR-combination of wxPosixPermissions enumeration values.
     */
     bool Open(const wxString& filename,
-              wxFile::OpenMode mode = wxFile::read,
+    bool Open(const wxString& filename, wxFile::OpenMode mode = wxFile::read,
               int access = wxS_DEFAULT);
 
     /**
@@ -391,7 +391,7 @@ public:
 
         @return The number of bytes read, or the symbol wxInvalidOffset.
     */
-    size_t Read(void* buffer, size_t count);
+    ssize_t Read(void* buffer, size_t count);
 
     /**
         Seeks to the specified position.