1 /* zutil.h -- internal interface and configuration of the compression library
2 * Copyright (C) 1995-2012 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.
11 /* @(#) $Id: zutil.h,v 1.1.1.2 2002/03/11 21:53:28 tromey Exp $ */
17 # define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
19 # define ZLIB_INTERNAL
24 #if defined(STDC) && !defined(Z_SOLO)
25 # if !(defined(_WIN32_WCE) && defined(_MSC_VER))
33 typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */
39 /* compile with -Dlocal if your debugger can't find static symbols */
41 typedef unsigned char uch
;
43 typedef unsigned short ush
;
45 typedef unsigned long ulg
;
47 extern const char * const z_errmsg
[10]; /* indexed by 2-zlib_error */
48 /* (size given to avoid silly warnings with Visual C++) */
50 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
52 #define ERR_RETURN(strm,err) \
53 return (strm->msg = (char*)ERR_MSG(err), (err))
54 /* To be used only when the state is known to be valid */
56 /* common constants */
59 # define DEF_WBITS MAX_WBITS
61 /* default windowBits for decompression. MAX_WBITS is for compression only */
63 #if MAX_MEM_LEVEL >= 8
64 # define DEF_MEM_LEVEL 8
66 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
68 /* default memLevel */
70 #define STORED_BLOCK 0
71 #define STATIC_TREES 1
73 /* The three kinds of block type */
77 /* The minimum and maximum match lengths */
79 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
81 /* target dependencies */
83 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
86 # if defined(__TURBOC__) || defined(__BORLANDC__)
87 # if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
88 /* Allow compilation with ANSI keywords only enabled */
89 void _Cdecl
farfree( void *block
);
90 void *_Cdecl
farmalloc( unsigned long nbytes
);
94 # else /* MSC or DJGPP */
101 # define OS_CODE 0x01
104 #if defined(VAXC) || defined(VMS)
105 # define OS_CODE 0x02
106 # define F_OPEN(name, mode) \
107 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
110 #if defined(ATARI) || defined(atarist)
111 # define OS_CODE 0x05
115 # define OS_CODE 0x06
116 # if defined(M_I86) && !defined(Z_SOLO)
121 #if defined(MACOS) || defined(TARGET_OS_MAC)
122 # define OS_CODE 0x07
124 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
125 # include <unix.h> /* for fdopen */
128 # define fdopen(fd,mode) NULL /* No fdopen() */
135 # define OS_CODE 0x0a
139 # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
140 # define OS_CODE 0x0b
144 #ifdef __50SERIES /* Prime/PRIMOS */
145 # define OS_CODE 0x0f
148 #if defined(_BEOS_) || defined(RISCOS)
149 # define fdopen(fd,mode) NULL /* No fdopen() */
152 #if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
153 # if defined(_WIN32_WCE)
154 # define fdopen(fd,mode) NULL /* No fdopen() */
155 # ifndef _PTRDIFF_T_DEFINED
156 typedef int ptrdiff_t;
157 # define _PTRDIFF_T_DEFINED
160 # define fdopen(fd,type) _fdopen(fd,type)
164 #if defined(__BORLANDC__) && !defined(MSDOS)
170 /* provide prototypes for these when building zlib without LFS */
171 #if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
172 ZEXTERN uLong ZEXPORT adler32_combine64
OF((uLong
, uLong
, z_off_t
));
173 ZEXTERN uLong ZEXPORT crc32_combine64
OF((uLong
, uLong
, z_off_t
));
176 /* common defaults */
179 # define OS_CODE 0x03 /* assume Unix */
183 # define F_OPEN(name, mode) fopen((name), (mode))
188 #if defined(pyr) || defined(Z_SOLO)
191 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
192 /* Use our own functions for small and medium model with MSC <= 5.0.
193 * You may have to use the same strategy for Borland C (untested).
194 * The __SC__ check is for Symantec.
198 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
202 # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
203 # define zmemcpy _fmemcpy
204 # define zmemcmp _fmemcmp
205 # define zmemzero(dest, len) _fmemset(dest, 0, len)
207 # define zmemcpy memcpy
208 # define zmemcmp memcmp
209 # define zmemzero(dest, len) memset(dest, 0, len)
212 void ZLIB_INTERNAL zmemcpy
OF((Bytef
* dest
, const Bytef
* source
, uInt len
));
213 int ZLIB_INTERNAL zmemcmp
OF((const Bytef
* s1
, const Bytef
* s2
, uInt len
));
214 void ZLIB_INTERNAL zmemzero
OF((Bytef
* dest
, uInt len
));
217 /* Diagnostic functions */
220 extern int ZLIB_INTERNAL z_verbose
;
221 extern void ZLIB_INTERNAL z_error
OF((char *m
));
222 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
223 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
224 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
225 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
226 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
227 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
229 # define Assert(cond,msg)
234 # define Tracecv(c,x)
238 voidpf ZLIB_INTERNAL zcalloc
OF((voidpf opaque
, unsigned items
,
240 void ZLIB_INTERNAL zcfree
OF((voidpf opaque
, voidpf ptr
));
243 #define ZALLOC(strm, items, size) \
244 (*((strm)->zalloc))((strm)->opaque, (items), (size))
245 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
246 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
248 /* Reverse the bytes in a 32-bit value */
249 #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
250 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))