1 /* zutil.h -- internal interface and configuration of the compression library
2 * Copyright (C) 1995-2010 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
6 /* WARNING: this file should *not* be used by applications. It is
7 part of the implementation of the compression library and is
8 subject to change. Applications should only use zlib.h.
16 #if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) && !defined(NO_VIZ)
17 # define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
19 # define ZLIB_INTERNAL
25 # if !(defined(_WIN32_WCE) && defined(_MSC_VER))
33 /* The Microsoft C Run-Time Library for Windows CE doesn't have
34 * errno. We define it as a global variable to simplify porting.
35 * Its value is always 0 and should not be used. We rename it to
36 * avoid conflict with other libraries that use the same workaround.
38 # define errno z_errno
50 /* compile with -Dlocal if your debugger can't find static symbols */
52 typedef unsigned char uch
;
54 typedef unsigned short ush
;
56 typedef unsigned long ulg
;
58 extern const char * const z_errmsg
[10]; /* indexed by 2-zlib_error */
59 /* (size given to avoid silly warnings with Visual C++) */
61 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
63 #define ERR_RETURN(strm,err) \
64 return (strm->msg = (char*)ERR_MSG(err), (err))
65 /* To be used only when the state is known to be valid */
67 /* common constants */
70 # define DEF_WBITS MAX_WBITS
72 /* default windowBits for decompression. MAX_WBITS is for compression only */
74 #if MAX_MEM_LEVEL >= 8
75 # define DEF_MEM_LEVEL 8
77 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
79 /* default memLevel */
81 #define STORED_BLOCK 0
82 #define STATIC_TREES 1
84 /* The three kinds of block type */
88 /* The minimum and maximum match lengths */
90 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
92 /* target dependencies */
94 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
96 # if defined(__TURBOC__) || defined(__BORLANDC__)
97 # if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
98 /* Allow compilation with ANSI keywords only enabled */
99 void _Cdecl
farfree( void *block
);
100 void *_Cdecl
farmalloc( unsigned long nbytes
);
104 # else /* MSC or DJGPP */
110 # define OS_CODE 0x01
113 #if defined(VAXC) || defined(VMS)
114 # define OS_CODE 0x02
115 # define F_OPEN(name, mode) \
116 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
119 #if defined(ATARI) || defined(atarist)
120 # define OS_CODE 0x05
124 # define OS_CODE 0x06
130 #if defined(MACOS) || defined(TARGET_OS_MAC)
131 # define OS_CODE 0x07
132 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
133 # include <unix.h> /* for fdopen */
136 # define fdopen(fd,mode) NULL /* No fdopen() */
142 # define OS_CODE 0x0a
146 # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
147 # define OS_CODE 0x0b
151 #ifdef __50SERIES /* Prime/PRIMOS */
152 # define OS_CODE 0x0f
155 #if defined(_BEOS_) || defined(RISCOS)
156 # define fdopen(fd,mode) NULL /* No fdopen() */
159 #if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
160 # if defined(_WIN32_WCE)
161 # define fdopen(fd,mode) NULL /* No fdopen() */
162 # ifndef _PTRDIFF_T_DEFINED
163 typedef int ptrdiff_t;
164 # define _PTRDIFF_T_DEFINED
167 # define fdopen(fd,type) _fdopen(fd,type)
171 #if defined(__BORLANDC__)
177 /* provide prototypes for these when building zlib without LFS */
178 #if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0
179 ZEXTERN uLong ZEXPORT adler32_combine64
OF((uLong
, uLong
, z_off_t
));
180 ZEXTERN uLong ZEXPORT crc32_combine64
OF((uLong
, uLong
, z_off_t
));
183 /* common defaults */
186 # define OS_CODE 0x03 /* assume Unix */
190 # define F_OPEN(name, mode) fopen((name), (mode))
195 #if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
196 # ifndef HAVE_VSNPRINTF
197 # define HAVE_VSNPRINTF
200 #if defined(__CYGWIN__)
201 # ifndef HAVE_VSNPRINTF
202 # define HAVE_VSNPRINTF
205 #ifndef HAVE_VSNPRINTF
207 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
208 but for now we just assume it doesn't. */
209 # define NO_vsnprintf
212 # define NO_vsnprintf
215 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
216 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
217 # if !defined(_MSC_VER) || ( defined(_MSC_VER) && _MSC_VER < 1500 )
218 # define vsnprintf _vsnprintf
223 # define NO_vsnprintf
227 # define NO_vsnprintf
233 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
234 /* Use our own functions for small and medium model with MSC <= 5.0.
235 * You may have to use the same strategy for Borland C (untested).
236 * The __SC__ check is for Symantec.
240 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
244 # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
245 # define zmemcpy _fmemcpy
246 # define zmemcmp _fmemcmp
247 # define zmemzero(dest, len) _fmemset(dest, 0, len)
249 # define zmemcpy memcpy
250 # define zmemcmp memcmp
251 # define zmemzero(dest, len) memset(dest, 0, len)
254 void ZLIB_INTERNAL zmemcpy
OF((Bytef
* dest
, const Bytef
* source
, uInt len
));
255 int ZLIB_INTERNAL zmemcmp
OF((const Bytef
* s1
, const Bytef
* s2
, uInt len
));
256 void ZLIB_INTERNAL zmemzero
OF((Bytef
* dest
, uInt len
));
259 /* Diagnostic functions */
262 extern int ZLIB_INTERNAL z_verbose
;
263 extern void ZLIB_INTERNAL z_error
OF((char *m
));
264 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
265 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
266 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
267 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
268 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
269 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
271 # define Assert(cond,msg)
276 # define Tracecv(c,x)
280 voidpf ZLIB_INTERNAL zcalloc
OF((voidpf opaque
, unsigned items
,
282 void ZLIB_INTERNAL zcfree
OF((voidpf opaque
, voidpf ptr
));
284 #define ZALLOC(strm, items, size) \
285 (*((strm)->zalloc))((strm)->opaque, (items), (size))
286 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
287 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}