Update contrib.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* zutil.h -- internal interface and configuration of the compression library
6 * Copyright (C) 1995-2005 Jean-loup Gailly.
7 * For conditions of distribution and use, see copyright notice in zlib.h
10 /* WARNING: this file should *not* be used by applications. It is
11 part of the implementation of the compression library and is
12 subject to change. Applications should only use zlib.h.
21 #if defined(SYMBIAN_EZLIB_DEVICE) && !defined(LIBZGZIO_H)
25 #if !defined(SYMBIAN_EZLIB_DEVICE) || defined(LIBZGZIO_H)
36 /* The Microsoft C Run-Time Library for Windows CE doesn't have
37 * errno. We define it as a global variable to simplify porting.
38 * Its value is always 0 and should not be used. We rename it to
39 * avoid conflict with other libraries that use the same workaround.
41 # define errno z_errno
50 #endif //SYMBIAN_EZLIB_DEVICE
55 /* compile with -Dlocal if your debugger can't find static symbols */
57 typedef unsigned char uch;
59 typedef unsigned short ush;
61 typedef unsigned long ulg;
63 extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
64 /* (size given to avoid silly warnings with Visual C++) */
68 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
70 #define ERR_RETURN(strm,err) \
71 return (strm->msg = (char*)ERR_MSG(err), (err))
72 /* To be used only when the state is known to be valid */
74 /* common constants */
77 # define DEF_WBITS MAX_WBITS
79 /* default windowBits for decompression. MAX_WBITS is for compression only */
81 #if MAX_MEM_LEVEL >= 8
82 #define DEF_MEM_LEVEL 8
84 #define DEF_MEM_LEVEL MAX_MEM_LEVEL
87 /* default memLevel */
89 #define STORED_BLOCK 0
90 #define STATIC_TREES 1
92 /* The three kinds of block type */
96 /* The minimum and maximum match lengths */
98 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
100 /* target dependencies */
103 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
104 # define OS_CODE 0x00
105 # if defined(__TURBOC__) || defined(__BORLANDC__)
106 # if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
107 /* Allow compilation with ANSI keywords only enabled */
108 void _Cdecl farfree( void *block );
109 void *_Cdecl farmalloc( unsigned long nbytes );
113 # else /* MSC or DJGPP */
119 # define OS_CODE 0x01
122 #if defined(VAXC) || defined(VMS)
123 # define OS_CODE 0x02
124 # define F_OPEN(name, mode) \
125 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
128 #if defined(ATARI) || defined(atarist)
129 # define OS_CODE 0x05
133 # define OS_CODE 0x06
139 #if defined(MACOS) || defined(TARGET_OS_MAC)
140 # define OS_CODE 0x07
141 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
142 # include <unix.h> /* for fdopen */
145 # define fdopen(fd,mode) NULL /* No fdopen() */
151 # define OS_CODE 0x0a
155 # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
156 # define OS_CODE 0x0b
160 #ifdef __50SERIES /* Prime/PRIMOS */
161 # define OS_CODE 0x0f
164 #if defined(_BEOS_) || defined(RISCOS)
165 # define fdopen(fd,mode) NULL /* No fdopen() */
168 #if (defined(_MSC_VER) && (_MSC_VER > 600))
169 # if defined(_WIN32_WCE)
170 # define fdopen(fd,mode) NULL /* No fdopen() */
171 # ifndef _PTRDIFF_T_DEFINED
172 typedef int ptrdiff_t;
173 # define _PTRDIFF_T_DEFINED
176 # define fdopen(fd,type) _fdopen(fd,type)
180 /* common defaults */
183 # define OS_CODE 0x03 /* assume Unix */
186 #if !defined(SYMBIAN_EZLIB_DEVICE) || defined(LIBZGZIO_H)
188 # define F_OPEN(name, mode) fopen((name), (mode))
193 #if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
194 # ifndef HAVE_VSNPRINTF
195 # define HAVE_VSNPRINTF
198 #if defined(__CYGWIN__)
199 # ifndef HAVE_VSNPRINTF
200 # define HAVE_VSNPRINTF
203 #ifndef HAVE_VSNPRINTF
205 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
206 but for now we just assume it doesn't. */
207 # define NO_vsnprintf
210 # define NO_vsnprintf
213 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
214 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
215 #ifndef SYMBIAN_EZLIB_DEVICE
216 # define vsnprintf _vsnprintf
217 # endif //SYMBIAN_EZLIB_DEVICE
221 # define NO_vsnprintf
225 # define NO_vsnprintf
228 #endif // !SYMBIAN_EZLIB_DEVICE || LIBZGZIO_H
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 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
255 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
256 extern void zmemzero OF((Bytef* dest, uInt len));
259 // Native Symbian Memory Functions Symbian
260 #if defined(SYMBIAN_EZLIB_DEVICE) && !defined(LIBZGZIO_H)
265 #define zmemcpy Mem::Copy
266 #define zmemcmp(s1,s2,len) Mem::Compare(s1,len,s2,len)
267 #define zmemzero(dest, len) Mem::FillZ(dest, len)
268 #endif //SYMBIAN_EZLIB_DEVICE && !LIBZGZIO_H
270 /* Diagnostic functions */
273 extern int z_verbose;
274 extern void z_error OF((char *m));
275 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
276 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
277 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
278 # define Tracevv(x) {if (z_verbose>1) fprintf x ;}
279 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
280 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
282 # define Assert(cond,msg)
287 # define Tracecv(c,x)
291 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
292 void zcfree OF((voidpf opaque, voidpf ptr));
294 #define ZALLOC(strm, items, size) \
295 (*((strm)->zalloc))((strm)->opaque, (items), (size))
296 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
297 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}