]> git.saurik.com Git - wxWidgets.git/blobdiff - src/zlib/zutil.h
OS/2 VisualAge doesn't know about lower case true and false and redefine a for loop...
[wxWidgets.git] / src / zlib / zutil.h
index e6a07d2e64faaee357c4aee22002693eb94c2514..1415c44225c108776ed79fac2e9ea74b50b7f310 100644 (file)
@@ -188,7 +188,7 @@ extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
 #endif
 
 /* Diagnostic functions */
-#ifdef WXDEBUG
+#ifdef __WXDEBUG__
 #  include <stdio.h>
    extern int z_verbose;
    extern void z_error    OF((char *m));
@@ -208,10 +208,17 @@ extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
 #endif
 
 
+#if defined(__VISAGECPP__)
+typedef uLong (ZEXPORT _Optlink *check_func) OF((uLong check, const Bytef *buf,
+                                      uInt len));
+voidpf _Optlink zcalloc OF((voidpf opaque, unsigned items, unsigned size));
+void  _Optlink zcfree OF((voidpf opaque, voidpf ptr));
+#else
 typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
                                       uInt len));
 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
 void   zcfree  OF((voidpf opaque, voidpf ptr));
+#endif
 
 #define ZALLOC(strm, items, size) \
            (*((strm)->zalloc))((strm)->opaque, (items), (size))