1 /* zconf.h -- configuration of the zlib compression library
2 * Copyright (C) 1995-2003 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
6 /* @(#) $Id: zconf.h,v 1.1.1.2 2002/03/11 21:53:27 tromey Exp $ */
12 * If you *really* need a unique prefix for all types and library functions,
13 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
16 # define deflateInit_ z_deflateInit_
17 # define deflate z_deflate
18 # define deflateEnd z_deflateEnd
19 # define inflateInit_ z_inflateInit_
20 # define inflate z_inflate
21 # define inflateEnd z_inflateEnd
22 # define deflateInit2_ z_deflateInit2_
23 # define deflateSetDictionary z_deflateSetDictionary
24 # define deflateCopy z_deflateCopy
25 # define deflateReset z_deflateReset
26 # define deflatePrime z_deflatePrime
27 # define deflateParams z_deflateParams
28 # define deflateBound z_deflateBound
29 # define inflateInit2_ z_inflateInit2_
30 # define inflateSetDictionary z_inflateSetDictionary
31 # define inflateSync z_inflateSync
32 # define inflateSyncPoint z_inflateSyncPoint
33 # define inflateCopy z_inflateCopy
34 # define inflateReset z_inflateReset
35 # define compress z_compress
36 # define compress2 z_compress2
37 # define compressBound z_compressBound
38 # define uncompress z_uncompress
39 # define adler32 z_adler32
40 # define crc32 z_crc32
41 # define get_crc_table z_get_crc_table
45 # define uLong z_uLong
46 # define Bytef z_Bytef
47 # define charf z_charf
49 # define uIntf z_uIntf
50 # define uLongf z_uLongf
51 # define voidpf z_voidpf
52 # define voidp z_voidp
55 #if defined(__MSDOS__) && !defined(MSDOS)
58 #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
61 #if defined(_WINDOWS) && !defined(WINDOWS)
64 #if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
67 #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
68 # if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
76 * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
77 * than 64k bytes at a time (needed on systems with 16-bit int).
86 #ifdef __STDC_VERSION__
90 # if __STDC_VERSION__ >= 199901L
96 #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
99 #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
102 #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
105 #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
109 #if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
114 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
115 # define const /* note: need a more gentle solution here */
119 /* Some Mac compilers merge all .h files incorrectly: */
120 #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
121 # define NO_DUMMY_DECL
124 /* Maximum value for memLevel in deflateInit2 */
125 #ifndef MAX_MEM_LEVEL
127 # define MAX_MEM_LEVEL 8
129 # define MAX_MEM_LEVEL 9
133 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
134 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
135 * created by gzip. (Files created by minigzip can still be extracted by
139 # define MAX_WBITS 15 /* 32K LZ77 window */
142 /* The memory requirements for deflate are (in bytes):
143 (1 << (windowBits+2)) + (1 << (memLevel+9))
144 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
145 plus a few kilobytes for small objects. For example, if you want to reduce
146 the default memory requirements from 256K to 128K, compile with
147 make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
148 Of course this will generally degrade compression (there's no free lunch).
150 The memory requirements for inflate are (in bytes) 1 << windowBits
151 that is, 32K for windowBits=15 (default value) plus a few kilobytes
155 /* Type declarations */
157 #ifndef OF /* function prototypes */
159 # define OF(args) args
165 /* The following definitions for FAR are needed only for MSDOS mixed
166 * model programming (small or medium model with some far allocations).
167 * This was tested only with MSC; for other MSDOS compilers you may have
168 * to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
169 * just define FAR to be empty.
172 # if defined(M_I86SM) || defined(M_I86MM)
173 /* MSC small or medium model */
174 # define SMALL_MEDIUM
181 # if (defined(__SMALL__) || defined(__MEDIUM__))
182 /* Turbo C small or medium model */
183 # define SMALL_MEDIUM
192 #if defined(WINDOWS) || defined(WIN32)
193 /* If building or using zlib as a DLL, define ZLIB_DLL.
194 * This is not mandatory, but it offers a little performance increase.
197 # if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
198 # ifdef ZLIB_INTERNAL
199 # define ZEXTERN extern __declspec(dllexport)
201 # define ZEXTERN extern __declspec(dllimport)
204 # endif /* ZLIB_DLL */
205 /* If building or using zlib with the WINAPI/WINAPIV calling convention,
206 * define ZLIB_WINAPI.
207 * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
213 # include <windows.h>
214 /* No need for _export, use ZLIB.DEF instead. */
215 /* For complete Windows compatibility, use WINAPI, not __stdcall. */
216 # define ZEXPORT WINAPI
218 # define ZEXPORTVA WINAPIV
220 # define ZEXPORTVA FAR CDECL
225 #if defined (__BEOS__)
227 # ifdef ZLIB_INTERNAL
228 # define ZEXPORT __declspec(dllexport)
229 # define ZEXPORTVA __declspec(dllexport)
231 # define ZEXPORT __declspec(dllimport)
232 # define ZEXPORTVA __declspec(dllimport)
238 # define ZEXTERN extern
251 #if !defined(__MACTYPES__)
252 typedef unsigned char Byte
; /* 8 bits */
254 typedef unsigned int uInt
; /* 16 bits or more */
255 typedef unsigned long uLong
; /* 32 bits or more */
258 /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
259 # define Bytef Byte FAR
261 typedef Byte FAR Bytef
;
263 typedef char FAR charf
;
264 typedef int FAR intf
;
265 typedef uInt FAR uIntf
;
266 typedef uLong FAR uLongf
;
269 typedef void const *voidpc
;
270 typedef void FAR
*voidpf
;
273 typedef Byte
const *voidpc
;
274 typedef Byte FAR
*voidpf
;
278 #if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */
279 # include <sys/types.h> /* for off_t */
280 # include <unistd.h> /* for SEEK_* and off_t */
282 # include <unixio.h> /* for off_t */
284 # define z_off_t off_t
287 # define SEEK_SET 0 /* Seek from beginning of file. */
288 # define SEEK_CUR 1 /* Seek from current position. */
289 # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
292 # define z_off_t long
295 #if defined(__OS400__)
300 # define NO_vsnprintf
306 /* MVS linker does not support external names larger than 8 bytes */
308 # pragma map(deflateInit_,"DEIN")
309 # pragma map(deflateInit2_,"DEIN2")
310 # pragma map(deflateEnd,"DEEND")
311 # pragma map(deflateBound,"DEBND")
312 # pragma map(inflateInit_,"ININ")
313 # pragma map(inflateInit2_,"ININ2")
314 # pragma map(inflateEnd,"INEND")
315 # pragma map(inflateSync,"INSY")
316 # pragma map(inflateSetDictionary,"INSEDI")
317 # pragma map(compressBound,"CMBND")
318 # pragma map(inflate_table,"INTABL")
319 # pragma map(inflate_fast,"INFA")
320 # pragma map(inflate_copyright,"INCOPY")
323 /* Solaris 2.5.1 doesn't have vsnprintf */
324 #if defined(__sun) && defined(__svr4__)
325 #include <sys/feature_tests.h>
326 #if _XOPEN_VERSION < 3
331 /* Tru64 UNIX V4.0 neither */
332 #if defined(__alpha) && defined(__osf__)
334 #if _XOPEN_VERSION < 500