]>
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-1998 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 #include "../zlib/zlib.h"
32 /* compile with -Dlocal if your debugger can't find static symbols */
34 typedef unsigned char uch
;
36 typedef unsigned short ush
;
38 typedef unsigned long ulg
;
40 extern const char *z_errmsg
[10]; /* indexed by 2-zlib_error */
41 /* (size given to avoid silly warnings with Visual C++) */
43 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
45 #define ERR_RETURN(strm,err) \
46 return (strm->msg = (char*)ERR_MSG(err), (err))
47 /* To be used only when the state is known to be valid */
49 /* common constants */
52 # define DEF_WBITS MAX_WBITS
54 /* default windowBits for decompression. MAX_WBITS is for compression only */
56 #if MAX_MEM_LEVEL >= 8
57 # define DEF_MEM_LEVEL 8
59 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
61 /* default memLevel */
63 #define STORED_BLOCK 0
64 #define STATIC_TREES 1
66 /* The three kinds of block type */
70 /* The minimum and maximum match lengths */
72 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
74 /* target dependencies */
79 # if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
80 /* Allow compilation with ANSI keywords only enabled */
81 void _Cdecl
farfree( void *block
);
82 void *_Cdecl
farmalloc( unsigned long nbytes
);
86 # else /* MSC or DJGPP */
95 #ifdef WIN32 /* Window 95 & Windows NT */
99 #if defined(VAXC) || defined(VMS)
100 # define OS_CODE 0x02
101 # define F_OPEN(name, mode) \
102 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
106 # define OS_CODE 0x01
109 #if defined(ATARI) || defined(atarist)
110 # define OS_CODE 0x05
113 #if defined(MACOS) || defined(TARGET_OS_MAC)
114 # define OS_CODE 0x07
116 # define fdopen(fd,mode) NULL /* No fdopen() */
119 #if defined(__MWERKS__) && !defined(fdopen)
120 # if __dest_os != __be_os && __dest_os != __win32_os
121 # define fdopen(fd,mode) NULL
125 #ifdef __50SERIES /* Prime/PRIMOS */
126 # define OS_CODE 0x0F
130 # define OS_CODE 0x0a
133 #if defined(_BEOS_) || defined(RISCOS)
134 # define fdopen(fd,mode) NULL /* No fdopen() */
137 #if (defined(_MSC_VER) && (_MSC_VER >= 600))
138 # define fdopen(fd,type) _fdopen(fd,type)
142 /* Common defaults */
145 # define OS_CODE 0x03 /* assume Unix */
149 # define F_OPEN(name, mode) fopen((name), (mode))
155 extern char *strerror
OF((int));
156 # define zstrerror(errnum) strerror(errnum)
158 # define zstrerror(errnum) ""
164 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
165 /* Use our own functions for small and medium model with MSC <= 5.0.
166 * You may have to use the same strategy for Borland C (untested).
167 * The __SC__ check is for Symantec.
171 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
175 # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
176 # define zmemcpy _fmemcpy
177 # define zmemcmp _fmemcmp
178 # define zmemzero(dest, len) _fmemset(dest, 0, len)
180 # define zmemcpy memcpy
181 # define zmemcmp memcmp
182 # define zmemzero(dest, len) memset(dest, 0, len)
185 extern void zmemcpy
OF((Bytef
* dest
, Bytef
* source
, uInt len
));
186 extern int zmemcmp
OF((Bytef
* s1
, Bytef
* s2
, uInt len
));
187 extern void zmemzero
OF((Bytef
* dest
, uInt len
));
190 /* Diagnostic functions */
193 extern int z_verbose
;
194 extern void z_error
OF((char *m
));
195 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
196 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
197 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
198 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
199 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
200 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
202 # define Assert(cond,msg)
207 # define Tracecv(c,x)
211 #if defined(__VISAGECPP__)
212 typedef uLong (ZEXPORT _Optlink
*check_func
) OF((uLong check
, const Bytef
*buf
,
214 voidpf _Optlink zcalloc
OF((voidpf opaque
, unsigned items
, unsigned size
));
215 void _Optlink zcfree
OF((voidpf opaque
, voidpf ptr
));
217 typedef uLong (ZEXPORT
*check_func
) OF((uLong check
, const Bytef
*buf
,
219 voidpf zcalloc
OF((voidpf opaque
, unsigned items
, unsigned size
));
220 void zcfree
OF((voidpf opaque
, voidpf ptr
));
223 #define ZALLOC(strm, items, size) \
224 (*((strm)->zalloc))((strm)->opaque, (items), (size))
225 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
226 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
228 #endif /* _Z_UTIL_H */