]> git.saurik.com Git - wxWidgets.git/commitdiff
added stubs for DoRead/WriteBinary()
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 13 Jul 2007 11:29:33 +0000 (11:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 13 Jul 2007 11:29:33 +0000 (11:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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