First public contribution.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* zconf.h -- configuration of the zlib compression library
6 * Copyright (C) 1995-2005 Jean-loup Gailly.
7 * For conditions of distribution and use, see copyright notice in zlib.h
21 #if (defined(__TOOLS2__) || defined(__TOOLS__))
22 /** Defined as nothing for tools builds, as EXPORT_C keyword not supported on these platforms */
26 #include <e32def.h> /* Include for definition of IMPORT_C below */
27 /** This macro is used in function prototypes in zlib.h and libzcore.h. Use Symbian definition IMPORT_C instead of ZEXTERN */
28 #define ZEXTERN IMPORT_C
29 /** This macro is used for EZLIB component */
30 #define SYMBIAN_EZLIB_DEVICE
31 #endif /* __SYMBIAN32__ */
32 #endif /* __TOOLS2__ || __TOOLS__ */
36 * If you *really* need a unique prefix for all types and library functions,
37 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
40 # define deflateInit_ z_deflateInit_
41 # define deflate z_deflate
42 # define deflateEnd z_deflateEnd
43 # define inflateInit_ z_inflateInit_
44 # define inflate z_inflate
45 # define inflateEnd z_inflateEnd
46 # define deflateInit2_ z_deflateInit2_
47 # define deflateSetDictionary z_deflateSetDictionary
48 # define deflateCopy z_deflateCopy
49 # define deflateReset z_deflateReset
50 # define deflateParams z_deflateParams
51 # define deflateBound z_deflateBound
52 # define deflatePrime z_deflatePrime
53 # define inflateInit2_ z_inflateInit2_
54 # define inflateSetDictionary z_inflateSetDictionary
55 # define inflateSync z_inflateSync
56 # define inflateSyncPoint z_inflateSyncPoint
57 # define inflateCopy z_inflateCopy
58 # define inflateReset z_inflateReset
59 # define inflateBack z_inflateBack
60 # define inflateBackEnd z_inflateBackEnd
61 # define compress z_compress
62 # define compress2 z_compress2
63 # define compressBound z_compressBound
64 # define uncompress z_uncompress
65 # define adler32 z_adler32
66 # define crc32 z_crc32
67 # define get_crc_table z_get_crc_table
68 # define zError z_zError
70 # define alloc_func z_alloc_func
71 # define free_func z_free_func
72 # define in_func z_in_func
73 # define out_func z_out_func
76 # define uLong z_uLong
77 # define Bytef z_Bytef
78 # define charf z_charf
80 # define uIntf z_uIntf
81 # define uLongf z_uLongf
82 # define voidpf z_voidpf
83 # define voidp z_voidp
86 #if defined(__MSDOS__) && !defined(MSDOS)
89 #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
92 #if defined(_WINDOWS) && !defined(WINDOWS)
95 #if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
100 #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
101 # if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
109 * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
110 * than 64k bytes at a time (needed on systems with 16-bit int).
116 # define UNALIGNED_OK
119 #ifdef __STDC_VERSION__
123 # if __STDC_VERSION__ >= 199901L
129 #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
130 /** define STDC i.e. Standard C */
133 #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
136 #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
139 #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
143 #if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
148 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
149 # define const /* note: need a more gentle solution here */
153 /* Some Mac compilers merge all .h files incorrectly: */
154 #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
155 # define NO_DUMMY_DECL
158 #ifndef MAX_MEM_LEVEL
160 /** Maximum value for memLevel in deflateInit2 */
161 # define MAX_MEM_LEVEL 8
163 /** Maximum value for memLevel in deflateInit2 */
164 # define MAX_MEM_LEVEL 9
168 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
169 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
170 * created by gzip. (Files created by minigzip can still be extracted by
174 /** 32K LZ77 window */
175 # define MAX_WBITS 15
178 /* The memory requirements for deflate are (in bytes):
179 (1 << (windowBits+2)) + (1 << (memLevel+9))
180 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
181 plus a few kilobytes for small objects. For example, if you want to reduce
182 the default memory requirements from 256K to 128K, compile with
183 make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
184 Of course this will generally degrade compression (there's no free lunch).
186 The memory requirements for inflate are (in bytes) 1 << windowBits
187 that is, 32K for windowBits=15 (default value) plus a few kilobytes
191 /* Type declarations */
193 #ifndef OF /* function prototypes */
197 @param args arguments ...
199 # define OF(args) args
201 /** Function prototypes */
206 /* The following definitions for FAR are needed only for MSDOS mixed
207 * model programming (small or medium model with some far allocations).
208 * This was tested only with MSC; for other MSDOS compilers you may have
209 * to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
210 * just define FAR to be empty.
213 # if defined(M_I86SM) || defined(M_I86MM)
214 /* MSC small or medium model */
215 # define SMALL_MEDIUM
222 # if (defined(__SMALL__) || defined(__MEDIUM__))
223 /* Turbo C small or medium model */
224 # define SMALL_MEDIUM
233 #if defined(WINDOWS) || defined(WIN32)
234 /* If building or using zlib as a DLL, define ZLIB_DLL.
235 * This is not mandatory, but it offers a little performance increase.
238 # if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
239 # ifdef ZLIB_INTERNAL
240 # define ZEXTERN extern __declspec(dllexport)
242 # define ZEXTERN extern __declspec(dllimport)
245 # endif /* ZLIB_DLL */
246 /* If building or using zlib with the WINAPI/WINAPIV calling convention,
247 * define ZLIB_WINAPI.
248 * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
254 # include <windows.h>
255 /* No need for _export, use ZLIB.DEF instead. */
256 /* For complete Windows compatibility, use WINAPI, not __stdcall. */
257 # define ZEXPORT WINAPI
259 # define ZEXPORTVA WINAPIV
261 # define ZEXPORTVA FAR CDECL
266 #if defined (__BEOS__)
268 # ifdef ZLIB_INTERNAL
269 # define ZEXPORT __declspec(dllexport)
270 # define ZEXPORTVA __declspec(dllexport)
272 # define ZEXPORT __declspec(dllimport)
273 # define ZEXPORTVA __declspec(dllimport)
279 /** extern defined as ZEXTERN */
280 # define ZEXTERN extern
294 #if !defined(__MACTYPES__)
296 typedef unsigned char Byte;
298 /** 16 bits or more */
299 typedef unsigned int uInt;
300 /** 32 bits or more */
301 typedef unsigned long uLong;
304 /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
305 # define Bytef Byte FAR
307 /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
308 typedef Byte FAR Bytef;
310 /** char typedef to charf */
311 typedef char FAR charf;
312 /** int typedef to intf */
313 typedef int FAR intf;
314 /** uInt typedef to uIntf */
315 typedef uInt FAR uIntf;
316 /** uLong typedef to uLongf */
317 typedef uLong FAR uLongf;
320 /** typedef void const* to voidpc */
321 typedef void const *voidpc;
322 /** typedef void FAR* to voidpf */
323 typedef void FAR *voidpf;
324 /** typedef void* to voidp */
327 /** typedef Byte const* to voidpc */
328 typedef Byte const *voidpc;
329 /** typedef Byte FAR* to voidpf */
330 typedef Byte FAR *voidpf;
331 /** typedef Byte* to voidp */
335 #if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */
336 # include <sys/types.h> /* for off_t */
337 # include <unistd.h> /* for SEEK_* and off_t */
339 # include <unixio.h> /* for off_t */
341 # define z_off_t off_t
344 /** Seek from beginning of file. */
346 /** Seek from current position. */
348 /** Set file pointer to EOF plus "offset" */
352 /** define z_off_t as long */
353 # define z_off_t long
356 #if defined(__OS400__)
357 # define NO_vsnprintf
361 # define NO_vsnprintf
367 /* MVS linker does not support external names larger than 8 bytes */
369 # pragma map(deflateInit_,"DEIN")
370 # pragma map(deflateInit2_,"DEIN2")
371 # pragma map(deflateEnd,"DEEND")
372 # pragma map(deflateBound,"DEBND")
373 # pragma map(inflateInit_,"ININ")
374 # pragma map(inflateInit2_,"ININ2")
375 # pragma map(inflateEnd,"INEND")
376 # pragma map(inflateSync,"INSY")
377 # pragma map(inflateSetDictionary,"INSEDI")
378 # pragma map(compressBound,"CMBND")
379 # pragma map(inflate_table,"INTABL")
380 # pragma map(inflate_fast,"INFA")
381 # pragma map(inflate_copyright,"INCOPY")
384 #endif /* _ZCONF_H */