]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/xpmdecod.h
change UpdateSelection() parameter type to int from size_t; also replaced remaining...
[wxWidgets.git] / include / wx / xpmdecod.h
index 807f2ed2d2522e517c911d8cf8e3d9bd3a98d958..96cdab77323f1e0cc7e8367252d806558544e8bc 100644 (file)
 #ifndef _WX_XPMDECOD_H_
 #define _WX_XPMDECOD_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "xpmdecod.h"
-#endif
-
-#include "wx/setup.h"
+#include "wx/defs.h"
 
+#if wxUSE_IMAGE && wxUSE_XPM
 
-class WXDLLEXPORT wxImage;
-class WXDLLEXPORT wxInputStream;
+class WXDLLIMPEXP_CORE wxImage;
+class WXDLLIMPEXP_BASE wxInputStream;
 
 // --------------------------------------------------------------------------
 // wxXPMDecoder class
@@ -38,9 +35,10 @@ public:
     wxImage ReadFile(wxInputStream& stream);
 #endif
     // Read directly from XPM data (as passed to wxBitmap ctor):
-    wxImage ReadData(const char **xpm_data);
+    wxImage ReadData(const char* const* xpm_data);
 };
 
+#endif // wxUSE_IMAGE && wxUSE_XPM
 
-#endif  // _WX_GIFDECOD_H_
+#endif  // _WX_XPM_H_