]> 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 f35b7f47eaf7f98c4ef0c46fa119f7cfcad2b4d3..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 WXDLLIMPEXP_CORE wxImage;
 class WXDLLIMPEXP_BASE wxInputStream;
@@ -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_