X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..6c02c32922ecd6b3272c89669e3fe1304cd9dfac:/src/zlib/infcodes.c diff --git a/src/zlib/infcodes.c b/src/zlib/infcodes.c index 1d3baa92eb..e0a80cbd77 100644 --- a/src/zlib/infcodes.c +++ b/src/zlib/infcodes.c @@ -1,6 +1,6 @@ /* infcodes.c -- process literals and length/distance pairs * Copyright (C) 1995-1998 Mark Adler - * For conditions of distribution and use, see copyright notice in zlib.h + * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" @@ -55,12 +55,15 @@ struct inflate_codes_state { }; - +#if defined(__VISAGECPP__) /* Visualage can't handle this antiquated interface */ +inflate_codes_statef* inflate_codes_new(uInt bl, uInt bd, inflate_huft* tl, inflate_huft* td, z_streamp z) +#else inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z) uInt bl, bd; inflate_huft *tl; inflate_huft *td; /* need separate declaration for Borland C++ */ z_streamp z; +#endif { inflate_codes_statef *c; @@ -77,11 +80,14 @@ z_streamp z; return c; } - +#if defined(__VISAGECPP__) /* Visualage can't handle this antiquated interface */ +int inflate_codes(inflate_blocks_statef* s, z_streamp z, int r) +#else int inflate_codes(s, z, r) inflate_blocks_statef *s; z_streamp z; int r; +#endif { uInt j; /* temporary storage */ inflate_huft *t; /* temporary pointer */ @@ -240,10 +246,13 @@ int r; #endif } - +#if defined(__VISAGECPP__) /* Visualage can't handle this antiquated interface */ +void inflate_codes_free(inflate_codes_statef* c, z_streamp z) +#else void inflate_codes_free(c, z) inflate_codes_statef *c; z_streamp z; +#endif { ZFREE(z, c); Tracev((stderr, "inflate: codes free\n"));