#pragma hdrstop
#endif
-#if wxUSE_CONFIG
+#if wxUSE_INICONF
#ifndef WX_PRECOMP
#include "wx/msw/wrapwin.h"
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
return false;
}
-#endif // wxUSE_CONFIG
+#endif // wxUSE_INICONF