]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/iniconf.cpp
use To/FromWChar() in single parameter wxMBConv::cMB2WC/WC2MB() overloads too, instea...
[wxWidgets.git] / src / msw / iniconf.cpp
index b9a1a09887aeb95db2af298e27bbc317e3b53597..8a97072e4be914469b198baea61f8e0373e0de1c 100644 (file)
@@ -360,6 +360,22 @@ bool wxIniConfig::DoWriteLong(const wxString& szKey, long lValue)
   return Write(szKey, wxString::Format(_T("%ld"), lValue));
 }
 
+bool wxIniConfig::DoReadBinary(const wxString& WXUNUSED(key),
+                               wxMemoryBuffer * WXUNUSED(buf)) const
+{
+    wxFAIL_MSG("not implemented");
+
+    return false;
+}
+
+bool wxIniConfig::DoWriteBinary(const wxString& WXUNUSED(key),
+                                const wxMemoryBuffer& WXUNUSED(buf))
+{
+    wxFAIL_MSG("not implemented");
+
+    return false;
+}
+
 bool wxIniConfig::Flush(bool /* bCurrentOnly */)
 {
   // this is just the way it works