]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagjpeg.cpp
implement GetBestSize() (patch 1386199)
[wxWidgets.git] / src / common / imagjpeg.cpp
index c92e1153966133a7914bad6091c7f97bbb505568..c6326116c5752f38d4404d475b58b02f1a79c117 100644 (file)
     #include "wx/module.h"
 #endif
 
+// A hack based on one from tif_jpeg.c to overcome the problem on Windows
+// of rpcndr.h defining boolean with a different type to the jpeg headers.
+// 
+// This hack is only necessary for an external jpeg library, the builtin one
+// usually used on Windows doesn't use the type boolean, so always works.
+//
+#ifdef wxHACK_BOOLEAN
+    #define HAVE_BOOLEAN
+    #define boolean wxHACK_BOOLEAN
+#endif
+
 extern "C"
 {
     #if defined(__WXMSW__)