]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/resource.h
Make use of new array functions.
[wxWidgets.git] / include / wx / resource.h
index 34f282c7770bd446db4ab3910db669b24c64d2cc..37c4e864567d6536a9f89ea6d6373fa08d9913d7 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_RESOURCEH__
 #define _WX_RESOURCEH__
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "resource.h"
 #endif
 
@@ -52,6 +52,8 @@
 #undef FindResource
 #endif
 
+class WXDLLEXPORT wxInputStream;
+
 /*
  * Internal format for control/panel item
  */
@@ -153,7 +155,7 @@ class WXDLLEXPORT wxResourceTable: public wxHashTable
     virtual bool DeleteResource(const wxString& name);
 
     virtual bool ParseResourceFile(const wxString& filename);
-       virtual bool ParseResourceFile( wxInputStream *is ) ;
+    virtual bool ParseResourceFile(wxInputStream *is);
     virtual bool ParseResourceData(const wxString& data);
     virtual bool SaveResource(const wxString& filename);
 
@@ -196,6 +198,9 @@ WXDLLEXPORT extern bool wxResourceRegisterBitmapData(const wxString& name, char
 WXDLLEXPORT extern bool wxResourceAddIdentifier(const wxString& name, int value, wxResourceTable *table = (wxResourceTable *) NULL);
 WXDLLEXPORT extern int wxResourceGetIdentifier(const wxString& name, wxResourceTable *table = (wxResourceTable *) NULL);
 
+#if defined(__WXPM__)
+#include "wx/os2/wxrsc.h"
+#endif
 #endif
 #endif
     // _WX_RESOURCEH__