]> git.lizzy.rs Git - zlib.git/blob - zconf.in.h
zlib 1.2.0.5
[zlib.git] / zconf.in.h
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
4  */
5
6 /* @(#) $Id$ */
7
8 #ifndef ZCONF_H
9 #define ZCONF_H
10
11 /*
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.
14  */
15 #ifdef Z_PREFIX
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 deflateParams z_deflateParams
27 #  define deflateBound  z_deflateBound
28 #  define inflateInit2_ z_inflateInit2_
29 #  define inflateSetDictionary z_inflateSetDictionary
30 #  define inflateSync   z_inflateSync
31 #  define inflateSyncPoint z_inflateSyncPoint
32 #  define inflateCopy   z_inflateCopy
33 #  define inflateReset  z_inflateReset
34 #  define compress      z_compress
35 #  define compress2     z_compress2
36 #  define compressBound z_compressBound
37 #  define uncompress    z_uncompress
38 #  define adler32       z_adler32
39 #  define crc32         z_crc32
40 #  define get_crc_table z_get_crc_table
41
42 #  define Byte          z_Byte
43 #  define uInt          z_uInt
44 #  define uLong         z_uLong
45 #  define Bytef         z_Bytef
46 #  define charf         z_charf
47 #  define intf          z_intf
48 #  define uIntf         z_uIntf
49 #  define uLongf        z_uLongf
50 #  define voidpf        z_voidpf
51 #  define voidp         z_voidp
52 #endif
53
54 #if defined(__MSDOS__) && !defined(MSDOS)
55 #  define MSDOS
56 #endif
57 #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
58 #  define OS2
59 #endif
60 #if defined(_WINDOWS) && !defined(WINDOWS)
61 #  define WINDOWS
62 #endif
63 #if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
64 #  define WIN32
65 #endif
66 #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
67 #  if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
68 #    ifndef SYS16BIT
69 #      define SYS16BIT
70 #    endif
71 #  endif
72 #endif
73
74 /*
75  * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
76  * than 64k bytes at a time (needed on systems with 16-bit int).
77  */
78 #ifdef SYS16BIT
79 #  define MAXSEG_64K
80 #endif
81 #ifdef MSDOS
82 #  define UNALIGNED_OK
83 #endif
84
85 #ifdef __STDC_VERSION__
86 #  ifndef STDC
87 #    define STDC
88 #  endif
89 #  if __STDC_VERSION__ >= 199901L
90 #    ifndef STDC99
91 #      define STDC99
92 #    endif
93 #  endif
94 #endif
95 #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
96 #  define STDC
97 #endif
98 #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
99 #  define STDC
100 #endif
101 #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
102 #  define STDC
103 #endif
104 #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
105 #  define STDC
106 #endif
107
108 #ifndef STDC
109 #  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
110 #    define const       /* note: need a more gentle solution here */
111 #  endif
112 #endif
113
114 /* Some Mac compilers merge all .h files incorrectly: */
115 #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
116 #  define NO_DUMMY_DECL
117 #endif
118
119 /* Maximum value for memLevel in deflateInit2 */
120 #ifndef MAX_MEM_LEVEL
121 #  ifdef MAXSEG_64K
122 #    define MAX_MEM_LEVEL 8
123 #  else
124 #    define MAX_MEM_LEVEL 9
125 #  endif
126 #endif
127
128 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
129  * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
130  * created by gzip. (Files created by minigzip can still be extracted by
131  * gzip.)
132  */
133 #ifndef MAX_WBITS
134 #  define MAX_WBITS   15 /* 32K LZ77 window */
135 #endif
136
137 /* The memory requirements for deflate are (in bytes):
138             (1 << (windowBits+2)) +  (1 << (memLevel+9))
139  that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
140  plus a few kilobytes for small objects. For example, if you want to reduce
141  the default memory requirements from 256K to 128K, compile with
142      make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
143  Of course this will generally degrade compression (there's no free lunch).
144
145    The memory requirements for inflate are (in bytes) 1 << windowBits
146  that is, 32K for windowBits=15 (default value) plus a few kilobytes
147  for small objects.
148 */
149
150                         /* Type declarations */
151
152 #ifndef OF /* function prototypes */
153 #  ifdef STDC
154 #    define OF(args)  args
155 #  else
156 #    define OF(args)  ()
157 #  endif
158 #endif
159
160 /* The following definitions for FAR are needed only for MSDOS mixed
161  * model programming (small or medium model with some far allocations).
162  * This was tested only with MSC; for other MSDOS compilers you may have
163  * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
164  * just define FAR to be empty.
165  */
166 #ifdef SYS16BIT
167 #  if defined(M_I86SM) || defined(M_I86MM)
168      /* MSC small or medium model */
169 #    define SMALL_MEDIUM
170 #    ifdef _MSC_VER
171 #      define FAR _far
172 #    else
173 #      define FAR far
174 #    endif
175 #  endif
176 #  if (defined(__SMALL__) || defined(__MEDIUM__))
177      /* Turbo C small or medium model */
178 #    define SMALL_MEDIUM
179 #    ifdef __BORLANDC__
180 #      define FAR _far
181 #    else
182 #      define FAR far
183 #    endif
184 #  endif
185 #endif
186
187 #if defined(WINDOWS) || defined(WIN32)
188    /* If building or using zlib as a DLL, define ZLIB_DLL.
189     * This is not mandatory, but it offers a little performance increase.
190     */
191 #  ifdef ZLIB_DLL
192 #    if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
193 #      ifdef ZLIB_INTERNAL
194 #        define ZEXTERN extern __declspec(dllexport)
195 #      else
196 #        define ZEXTERN extern __declspec(dllimport)
197 #      endif
198 #    endif
199 #  endif  /* ZLIB_DLL */
200    /* If building or using zlib with the WINAPI/WINAPIV calling convention,
201     * define ZLIB_WINAPI.
202     * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
203     */
204 #  ifdef ZLIB_WINAPI
205 #    ifdef FAR
206 #      undef FAR
207 #    endif
208 #    include <windows.h>
209      /* No need for _export, use ZLIB.DEF instead. */
210      /* For complete Windows compatibility, use WINAPI, not __stdcall. */
211 #    define ZEXPORT WINAPI
212 #    ifdef WIN32
213 #      define ZEXPORTVA WINAPIV
214 #    else
215 #      define ZEXPORTVA FAR CDECL
216 #    endif
217 #  endif
218 #endif
219
220 #if defined (__BEOS__)
221 #  ifdef ZLIB_DLL
222 #    ifdef ZLIB_INTERNAL
223 #      define ZEXPORT   __declspec(dllexport)
224 #      define ZEXPORTVA __declspec(dllexport)
225 #    else
226 #      define ZEXPORT   __declspec(dllimport)
227 #      define ZEXPORTVA __declspec(dllimport)
228 #    endif
229 #  endif
230 #endif
231
232 #ifndef ZEXTERN
233 #  define ZEXTERN extern
234 #endif
235 #ifndef ZEXPORT
236 #  define ZEXPORT
237 #endif
238 #ifndef ZEXPORTVA
239 #  define ZEXPORTVA
240 #endif
241
242 #ifndef FAR
243 #  define FAR
244 #endif
245
246 #if !defined(__MACTYPES__)
247 typedef unsigned char  Byte;  /* 8 bits */
248 #endif
249 typedef unsigned int   uInt;  /* 16 bits or more */
250 typedef unsigned long  uLong; /* 32 bits or more */
251
252 #ifdef SMALL_MEDIUM
253    /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
254 #  define Bytef Byte FAR
255 #else
256    typedef Byte  FAR Bytef;
257 #endif
258 typedef char  FAR charf;
259 typedef int   FAR intf;
260 typedef uInt  FAR uIntf;
261 typedef uLong FAR uLongf;
262
263 #ifdef STDC
264    typedef void const *voidpc;
265    typedef void FAR   *voidpf;
266    typedef void       *voidp;
267 #else
268    typedef Byte const *voidpc;
269    typedef Byte FAR   *voidpf;
270    typedef Byte       *voidp;
271 #endif
272
273 #if 0           /* HAVE_UNISTD_H -- this line is updated by ./configure */
274 #  include <sys/types.h> /* for off_t */
275 #  include <unistd.h>    /* for SEEK_* and off_t */
276 #  ifdef VMS
277 #    include <unixio.h>   /* for off_t */
278 #  endif
279 #  define z_off_t  off_t
280 #endif
281 #ifndef SEEK_SET
282 #  define SEEK_SET        0       /* Seek from beginning of file.  */
283 #  define SEEK_CUR        1       /* Seek from current position.  */
284 #  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
285 #endif
286 #ifndef z_off_t
287 #  define  z_off_t long
288 #endif
289
290 /* MVS linker does not support external names larger than 8 bytes */
291 #if defined(__MVS__)
292 #   pragma map(deflateInit_,"DEIN")
293 #   pragma map(deflateInit2_,"DEIN2")
294 #   pragma map(deflateEnd,"DEEND")
295 #   pragma map(deflateBound,"DEBND")
296 #   pragma map(inflateInit_,"ININ")
297 #   pragma map(inflateInit2_,"ININ2")
298 #   pragma map(inflateEnd,"INEND")
299 #   pragma map(inflateSync,"INSY")
300 #   pragma map(inflateSetDictionary,"INSEDI")
301 #   pragma map(compressBound,"CMBND")
302 #   pragma map(inflate_table,"INTABL")
303 #   pragma map(inflate_fast,"INFA")
304 #   pragma map(inflate_copyright,"INCOPY")
305 #endif
306
307 #endif /* ZCONF_H */