]>
git.saurik.com Git - wxWidgets.git/blob - src/zlib/zutil.h
1 /* zutil.h -- internal interface and configuration of the compression library
2 * Copyright (C) 1995-2003 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.
33 /* compile with -Dlocal if your debugger can't find static symbols */
35 typedef unsigned char uch
;
37 typedef unsigned short ush
;
39 typedef unsigned long ulg
;
41 extern const char * const z_errmsg
[10]; /* indexed by 2-zlib_error */
42 /* (size given to avoid silly warnings with Visual C++) */
44 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
46 #define ERR_RETURN(strm,err) \
47 return (strm->msg = (char*)ERR_MSG(err), (err))
48 /* To be used only when the state is known to be valid */
50 /* common constants */
53 # define DEF_WBITS MAX_WBITS
55 /* default windowBits for decompression. MAX_WBITS is for compression only */
57 #if MAX_MEM_LEVEL >= 8
58 # define DEF_MEM_LEVEL 8
60 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
62 /* default memLevel */
64 #define STORED_BLOCK 0
65 #define STATIC_TREES 1
67 /* The three kinds of block type */
71 /* The minimum and maximum match lengths */
73 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
75 /* target dependencies */
77 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
79 # if defined(__TURBOC__) || defined(__BORLANDC__)
80 # if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
81 /* Allow compilation with ANSI keywords only enabled */
82 void _Cdecl
farfree( void *block
);
83 void *_Cdecl
farmalloc( unsigned long nbytes
);
87 # else /* MSC or DJGPP */
96 #if defined(VAXC) || defined(VMS)
98 # define F_OPEN(name, mode) \
99 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
102 #if defined(ATARI) || defined(atarist)
103 # define OS_CODE 0x05
107 # define OS_CODE 0x06
110 #if defined(MACOS) || defined(TARGET_OS_MAC)
111 # define OS_CODE 0x07
112 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
113 # include <unix.h> /* for fdopen */
116 # define fdopen(fd,mode) NULL /* No fdopen() */
122 # define OS_CODE 0x0a
126 # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
127 # define OS_CODE 0x0b
131 #ifdef __50SERIES /* Prime/PRIMOS */
132 # define OS_CODE 0x0f
135 #if defined(_BEOS_) || defined(RISCOS)
136 # define fdopen(fd,mode) NULL /* No fdopen() */
139 #if (defined(_MSC_VER) && (_MSC_VER > 600))
140 # if defined(_WIN32_WCE)
141 # define fdopen(fd,mode) NULL /* No fdopen() */
142 # ifndef _PTRDIFF_T_DEFINED
143 typedef int ptrdiff_t;
144 # define _PTRDIFF_T_DEFINED
147 # define fdopen(fd,type) _fdopen(fd,type)
151 /* common defaults */
154 # define OS_CODE 0x03 /* assume Unix */
158 # define F_OPEN(name, mode) fopen((name), (mode))
163 #if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
164 # ifndef HAVE_VSNPRINTF
165 # define HAVE_VSNPRINTF
168 #if defined(__CYGWIN__)
169 # ifndef HAVE_VSNPRINTF
170 # define HAVE_VSNPRINTF
173 #ifndef HAVE_VSNPRINTF
175 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
176 but for now we just assume it doesn't. */
177 # define NO_vsnprintf
180 # define NO_vsnprintf
183 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
184 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
185 # define vsnprintf _vsnprintf
189 # define NO_vsnprintf
194 extern char *strerror
OF((int));
195 # define zstrerror(errnum) strerror(errnum)
197 # define zstrerror(errnum) ""
203 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
204 /* Use our own functions for small and medium model with MSC <= 5.0.
205 * You may have to use the same strategy for Borland C (untested).
206 * The __SC__ check is for Symantec.
210 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
214 # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
215 # define zmemcpy _fmemcpy
216 # define zmemcmp _fmemcmp
217 # define zmemzero(dest, len) _fmemset(dest, 0, len)
219 # define zmemcpy memcpy
220 # define zmemcmp memcmp
221 # define zmemzero(dest, len) memset(dest, 0, len)
224 extern void zmemcpy
OF((Bytef
* dest
, const Bytef
* source
, uInt len
));
225 extern int zmemcmp
OF((const Bytef
* s1
, const Bytef
* s2
, uInt len
));
226 extern void zmemzero
OF((Bytef
* dest
, uInt len
));
229 /* Diagnostic functions */
232 extern int z_verbose
;
233 extern void z_error
OF((char *m
));
234 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
235 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
236 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
237 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
238 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
239 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
241 # define Assert(cond,msg)
246 # define Tracecv(c,x)
250 voidpf zcalloc
OF((voidpf opaque
, unsigned items
, unsigned size
));
251 void zcfree
OF((voidpf opaque
, voidpf ptr
));
253 #define ZALLOC(strm, items, size) \
254 (*((strm)->zalloc))((strm)->opaque, (items), (size))
255 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
256 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}