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.
35 /* compile with -Dlocal if your debugger can't find static symbols */
37 typedef unsigned char uch
;
39 typedef unsigned short ush
;
41 typedef unsigned long ulg
;
43 extern const char *z_errmsg
[10]; /* indexed by 2-zlib_error */
44 /* (size given to avoid silly warnings with Visual C++) */
46 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
48 #define ERR_RETURN(strm,err) \
49 return (strm->msg = (char*)ERR_MSG(err), (err))
50 /* To be used only when the state is known to be valid */
52 /* common constants */
55 # define DEF_WBITS MAX_WBITS
57 /* default windowBits for decompression. MAX_WBITS is for compression only */
59 #if MAX_MEM_LEVEL >= 8
60 # define DEF_MEM_LEVEL 8
62 # define DEF_MEM_LEVEL MAX_MEM_LEVEL
64 /* default memLevel */
66 #define STORED_BLOCK 0
67 #define STATIC_TREES 1
69 /* The three kinds of block type */
73 /* The minimum and maximum match lengths */
75 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
77 /* target dependencies */
82 # if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
83 /* Allow compilation with ANSI keywords only enabled */
84 void _Cdecl
farfree( void *block
);
85 void *_Cdecl
farmalloc( unsigned long nbytes
);
89 # else /* MSC or DJGPP */
98 #ifdef WIN32 /* Window 95 & Windows NT */
102 #if defined(VAXC) || defined(VMS)
103 # define OS_CODE 0x02
104 # define F_OPEN(name, mode) \
105 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
109 # define OS_CODE 0x01
112 #if defined(ATARI) || defined(atarist)
113 # define OS_CODE 0x05
116 #if defined(MACOS) || defined(TARGET_OS_MAC)
117 # define OS_CODE 0x07
119 # define fdopen(fd,mode) NULL /* No fdopen() */
122 #if defined(__MWERKS__) && !defined(fdopen)
123 # if __dest_os != __be_os && __dest_os != __win32_os
124 # define fdopen(fd,mode) NULL
128 #ifdef __50SERIES /* Prime/PRIMOS */
129 # define OS_CODE 0x0F
133 # define OS_CODE 0x0a
136 #if defined(_BEOS_) || defined(RISCOS)
137 # define fdopen(fd,mode) NULL /* No fdopen() */
140 #if (defined(_MSC_VER) && (_MSC_VER >= 600))
141 # define fdopen(fd,type) _fdopen(fd,type)
145 /* Common defaults */
148 # define OS_CODE 0x03 /* assume Unix */
152 # define F_OPEN(name, mode) fopen((name), (mode))
158 extern char *strerror
OF((int));
159 # define zstrerror(errnum) strerror(errnum)
161 # define zstrerror(errnum) ""
167 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
168 /* Use our own functions for small and medium model with MSC <= 5.0.
169 * You may have to use the same strategy for Borland C (untested).
170 * The __SC__ check is for Symantec.
174 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
178 # ifdef SMALL_MEDIUM /* MSDOS small or medium model */
179 # define zmemcpy _fmemcpy
180 # define zmemcmp _fmemcmp
181 # define zmemzero(dest, len) _fmemset(dest, 0, len)
183 # define zmemcpy memcpy
184 # define zmemcmp memcmp
185 # define zmemzero(dest, len) memset(dest, 0, len)
188 extern void zmemcpy
OF((Bytef
* dest
, Bytef
* source
, uInt len
));
189 extern int zmemcmp
OF((Bytef
* s1
, Bytef
* s2
, uInt len
));
190 extern void zmemzero
OF((Bytef
* dest
, uInt len
));
193 /* Diagnostic functions */
196 extern int z_verbose
;
197 extern void z_error
OF((char *m
));
198 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
199 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
200 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
201 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
202 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
203 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
205 # define Assert(cond,msg)
210 # define Tracecv(c,x)
214 typedef uLong (ZEXPORT
*check_func
) OF((uLong check
, const Bytef
*buf
,
216 voidpf zcalloc
OF((voidpf opaque
, unsigned items
, unsigned size
));
217 void zcfree
OF((voidpf opaque
, voidpf ptr
));
219 #define ZALLOC(strm, items, size) \
220 (*((strm)->zalloc))((strm)->opaque, (items), (size))
221 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
222 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
224 #endif /* _Z_UTIL_H */