diff options
Diffstat (limited to 'zconf.h')
-rw-r--r-- | zconf.h | 83 |
1 files changed, 43 insertions, 40 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* zconf.h -- configuration of the zlib compression library | 1 | /* zconf.h -- configuration of the zlib compression library |
2 | * Copyright (C) 1995-2003 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2004 Jean-loup Gailly. |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -13,43 +13,46 @@ | |||
13 | * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. | 13 | * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. |
14 | */ | 14 | */ |
15 | #ifdef Z_PREFIX | 15 | #ifdef Z_PREFIX |
16 | # define deflateInit_ z_deflateInit_ | 16 | # define deflateInit_ z_deflateInit_ |
17 | # define deflate z_deflate | 17 | # define deflate z_deflate |
18 | # define deflateEnd z_deflateEnd | 18 | # define deflateEnd z_deflateEnd |
19 | # define inflateInit_ z_inflateInit_ | 19 | # define inflateInit_ z_inflateInit_ |
20 | # define inflate z_inflate | 20 | # define inflate z_inflate |
21 | # define inflateEnd z_inflateEnd | 21 | # define inflateEnd z_inflateEnd |
22 | # define deflateInit2_ z_deflateInit2_ | 22 | # define deflateInit2_ z_deflateInit2_ |
23 | # define deflateSetDictionary z_deflateSetDictionary | 23 | # define deflateSetDictionary z_deflateSetDictionary |
24 | # define deflateCopy z_deflateCopy | 24 | # define deflateCopy z_deflateCopy |
25 | # define deflateReset z_deflateReset | 25 | # define deflateReset z_deflateReset |
26 | # define deflatePrime z_deflatePrime | 26 | # define deflateParams z_deflateParams |
27 | # define deflateParams z_deflateParams | 27 | # define deflateBound z_deflateBound |
28 | # define deflateBound z_deflateBound | 28 | # define deflatePrime z_deflatePrime |
29 | # define inflateInit2_ z_inflateInit2_ | 29 | # define inflateInit2_ z_inflateInit2_ |
30 | # define inflateSetDictionary z_inflateSetDictionary | 30 | # define inflateSetDictionary z_inflateSetDictionary |
31 | # define inflateSync z_inflateSync | 31 | # define inflateSync z_inflateSync |
32 | # define inflateSyncPoint z_inflateSyncPoint | 32 | # define inflateSyncPoint z_inflateSyncPoint |
33 | # define inflateCopy z_inflateCopy | 33 | # define inflateCopy z_inflateCopy |
34 | # define inflateReset z_inflateReset | 34 | # define inflateReset z_inflateReset |
35 | # define compress z_compress | 35 | # define inflateBack z_inflateBack |
36 | # define compress2 z_compress2 | 36 | # define inflateBackEnd z_inflateBackEnd |
37 | # define compressBound z_compressBound | 37 | # define compress z_compress |
38 | # define uncompress z_uncompress | 38 | # define compress2 z_compress2 |
39 | # define adler32 z_adler32 | 39 | # define compressBound z_compressBound |
40 | # define crc32 z_crc32 | 40 | # define uncompress z_uncompress |
41 | # define get_crc_table z_get_crc_table | 41 | # define adler32 z_adler32 |
42 | # define crc32 z_crc32 | ||
43 | # define get_crc_table z_get_crc_table | ||
44 | # define zError z_zError | ||
42 | 45 | ||
43 | # define Byte z_Byte | 46 | # define Byte z_Byte |
44 | # define uInt z_uInt | 47 | # define uInt z_uInt |
45 | # define uLong z_uLong | 48 | # define uLong z_uLong |
46 | # define Bytef z_Bytef | 49 | # define Bytef z_Bytef |
47 | # define charf z_charf | 50 | # define charf z_charf |
48 | # define intf z_intf | 51 | # define intf z_intf |
49 | # define uIntf z_uIntf | 52 | # define uIntf z_uIntf |
50 | # define uLongf z_uLongf | 53 | # define uLongf z_uLongf |
51 | # define voidpf z_voidpf | 54 | # define voidpf z_voidpf |
52 | # define voidp z_voidp | 55 | # define voidp z_voidp |
53 | #endif | 56 | #endif |
54 | 57 | ||
55 | #if defined(__MSDOS__) && !defined(MSDOS) | 58 | #if defined(__MSDOS__) && !defined(MSDOS) |
@@ -281,7 +284,7 @@ typedef uLong FAR uLongf; | |||
281 | # ifdef VMS | 284 | # ifdef VMS |
282 | # include <unixio.h> /* for off_t */ | 285 | # include <unixio.h> /* for off_t */ |
283 | # endif | 286 | # endif |
284 | # define z_off_t off_t | 287 | # define z_off_t off_t |
285 | #endif | 288 | #endif |
286 | #ifndef SEEK_SET | 289 | #ifndef SEEK_SET |
287 | # define SEEK_SET 0 /* Seek from beginning of file. */ | 290 | # define SEEK_SET 0 /* Seek from beginning of file. */ |
@@ -289,11 +292,11 @@ typedef uLong FAR uLongf; | |||
289 | # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ | 292 | # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ |
290 | #endif | 293 | #endif |
291 | #ifndef z_off_t | 294 | #ifndef z_off_t |
292 | # define z_off_t long | 295 | # define z_off_t long |
293 | #endif | 296 | #endif |
294 | 297 | ||
295 | #if defined(__OS400__) | 298 | #if defined(__OS400__) |
296 | #define NO_vsnprintf | 299 | # define NO_vsnprintf |
297 | #endif | 300 | #endif |
298 | 301 | ||
299 | #if defined(__MVS__) | 302 | #if defined(__MVS__) |