]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/mstream.h
put wxURI under networking group, next to wxURL
[wxWidgets.git] / interface / wx / mstream.h
index 889344b929f6c17be117d72ba09bae67a7afaa20..eec704124a2f14b2f50ef831358851be659a09ff 100644 (file)
@@ -37,7 +37,7 @@ public:
         Allows you to transfer data from the internal buffer of wxMemoryOutputStream
         to an external buffer. @a len specifies the size of the buffer.
     */
-    size_t CopyTo(char* buffer, size_t len) const;
+    size_t CopyTo(void* buffer, size_t len) const;
 
     /**
         Returns the pointer to the stream object used as an internal buffer
@@ -66,7 +66,7 @@ public:
         buffer data of length len. The stream does not take ownership of the buffer,
         i.e. the buffer will not be deleted in its destructor.
     */
-    wxMemoryInputStream(const char* data, size_t len);
+    wxMemoryInputStream(const void* data, size_t len);
 
     /**
         Creates a new read-only memory stream, initializing it with the data from