X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/414721d003ccfc07804166774543349c2845cc14..fd67d2658b92d731069338e68deaa7bfbec22022:/src/msw/iniconf.cpp diff --git a/src/msw/iniconf.cpp b/src/msw/iniconf.cpp index b9a1a09887..b56e88db4a 100644 --- a/src/msw/iniconf.cpp +++ b/src/msw/iniconf.cpp @@ -16,7 +16,7 @@ #pragma hdrstop #endif -#if wxUSE_CONFIG +#if wxUSE_INICONF #ifndef WX_PRECOMP #include "wx/msw/wrapwin.h" @@ -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 @@ -455,4 +471,4 @@ bool wxIniConfig::RenameGroup(const wxString& WXUNUSED(oldName), return false; } -#endif // wxUSE_CONFIG +#endif // wxUSE_INICONF