]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/prefconf.cpp
decouple item index from string value (patch 1905702)
[wxWidgets.git] / src / palmos / prefconf.cpp
index 288e91f178150119e7aaa32903bde376e15ceae9..6bb8b54f990c776de1f00a81d66e87812c3fa9cc 100644 (file)
@@ -178,6 +178,14 @@ bool wxPrefConfig::DoReadLong(const wxString& key, long *plResult) const
     return false;
 }
 
+#if wxUSE_BASE64
+bool wxPrefConfig::DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const
+{
+    /* TODO */
+    return false;
+}
+#endif // wxUSE_BASE64
+
 bool wxPrefConfig::DoWriteString(const wxString& key, const wxString& szValue)
 {
     /* TODO */
@@ -190,6 +198,14 @@ bool wxPrefConfig::DoWriteLong(const wxString& key, long lValue)
     return false;
 }
 
+#if wxUSE_BASE64
+bool wxPrefConfig::DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf)
+{
+    /* TODO */
+    return false;
+}
+#endif // wxUSE_BASE64
+
 // ----------------------------------------------------------------------------
 // renaming
 // ----------------------------------------------------------------------------