]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/iniconf.h
fixed bugs with moving/centering the file dialog (replaces patch 1825170)
[wxWidgets.git] / include / wx / msw / iniconf.h
index 948825de3468522905ba5a38895a736c6834031c..5eca7ba7afa1da7729ee4cad853db58942e0776e 100644 (file)
@@ -9,8 +9,10 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#ifndef   _INICONF_H
-#define   _INICONF_H
+#ifndef   _WX_MSW_INICONF_H_
+#define   _WX_MSW_INICONF_H_
+
+#if wxUSE_INICONF
 
 // ----------------------------------------------------------------------------
 // wxIniConfig is a wxConfig implementation which uses MS Windows INI files to
@@ -78,9 +80,11 @@ protected:
   // read/write
   bool DoReadString(const wxString& key, wxString *pStr) const;
   bool DoReadLong(const wxString& key, long *plResult) const;
+  bool DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const;
 
   bool DoWriteString(const wxString& key, const wxString& szValue);
   bool DoWriteLong(const wxString& key, long lValue);
+  bool DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf);
 
 private:
   // helpers
@@ -95,4 +99,6 @@ private:
   DECLARE_ABSTRACT_CLASS(wxIniConfig)
 };
 
-#endif  //_INICONF_H
+#endif // wxUSE_INICONF
+
+#endif  //_WX_MSW_INICONF_H_