X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4ec0ce8205de4659f1e52d16480b5c025ebc41e..8946ede10c2702c7acbb194fe8bd2793d7fb8358:/src/palmos/prefconf.cpp?ds=sidebyside diff --git a/src/palmos/prefconf.cpp b/src/palmos/prefconf.cpp index 288e91f178..6bb8b54f99 100644 --- a/src/palmos/prefconf.cpp +++ b/src/palmos/prefconf.cpp @@ -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 // ----------------------------------------------------------------------------