sl@0: /* zutil.h -- internal interface and configuration of the compression library sl@0: * Copyright (C) 1995-1998 Jean-loup Gailly. sl@0: * For conditions of distribution and use, see copyright notice in zlib.h sl@0: */ sl@0: sl@0: /* WARNING: this file should *not* be used by applications. It is sl@0: part of the implementation of the compression library and is sl@0: subject to change. Applications should only use zlib.h. sl@0: */ sl@0: sl@0: /* @(#) $Id$ */ sl@0: sl@0: #ifndef _Z_UTIL_H sl@0: #define _Z_UTIL_H sl@0: sl@0: #include sl@0: #include "OldEZlib.h" sl@0: sl@0: /* sl@0: #ifdef STDC sl@0: # include sl@0: # include sl@0: # include sl@0: #endif sl@0: #ifdef NO_ERRNO_H sl@0: extern int errno; sl@0: #else sl@0: # include sl@0: #endif sl@0: */ sl@0: sl@0: #ifndef local sl@0: # define local static sl@0: #endif sl@0: /* compile with -Dlocal if your debugger can't find static symbols */ sl@0: sl@0: typedef unsigned char uch; sl@0: typedef uch FAR uchf; sl@0: typedef unsigned short ush; sl@0: typedef ush FAR ushf; sl@0: typedef unsigned long ulg; sl@0: sl@0: extern const char *const z_errmsg[10]; /* indexed by 2-zlib_error */ sl@0: /* (size given to avoid silly warnings with Visual C++) */ sl@0: sl@0: #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] sl@0: sl@0: #define ERR_RETURN(strm,err) \ sl@0: return (strm->msg = (char*)ERR_MSG(err), (err)) sl@0: /* To be used only when the state is known to be valid */ sl@0: sl@0: /* common constants */ sl@0: sl@0: #ifndef DEF_WBITS sl@0: # define DEF_WBITS MAX_WBITS sl@0: #endif sl@0: /* default windowBits for decompression. MAX_WBITS is for compression only */ sl@0: sl@0: #if MAX_MEM_LEVEL >= 8 sl@0: # define DEF_MEM_LEVEL 8 sl@0: #else sl@0: # define DEF_MEM_LEVEL MAX_MEM_LEVEL sl@0: #endif sl@0: /* default memLevel */ sl@0: sl@0: #define STORED_BLOCK 0 sl@0: #define STATIC_TREES 1 sl@0: #define DYN_TREES 2 sl@0: /* The three kinds of block type */ sl@0: sl@0: #define MIN_MATCH 3 sl@0: #define MAX_MATCH 258 sl@0: /* The minimum and maximum match lengths */ sl@0: sl@0: #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ sl@0: sl@0: /* target dependencies */ sl@0: sl@0: sl@0: sl@0: //#ifdef MSDOS sl@0: //# define OS_CODE 0x00 sl@0: //# if defined(__TURBOC__) || defined(__BORLANDC__) sl@0: //# if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__)) sl@0: /* Allow compilation with ANSI keywords only enabled */ sl@0: // void _Cdecl farfree( void *block ); sl@0: // void *_Cdecl farmalloc( unsigned long nbytes ); sl@0: //# else sl@0: //# include sl@0: //# endif sl@0: //# else /* MSC or DJGPP */ sl@0: //# include sl@0: //# endif sl@0: //#endif sl@0: sl@0: #ifdef OS2 sl@0: # define OS_CODE 0x06 sl@0: #endif sl@0: sl@0: #ifdef WIN32 /* Window 95 & Windows NT */ sl@0: # define OS_CODE 0x0b sl@0: #endif sl@0: sl@0: #if defined(VAXC) || defined(VMS) sl@0: # define OS_CODE 0x02 sl@0: # define F_OPEN(name, mode) \ sl@0: fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512") sl@0: #endif sl@0: sl@0: #ifdef AMIGA sl@0: # define OS_CODE 0x01 sl@0: #endif sl@0: sl@0: #if defined(ATARI) || defined(atarist) sl@0: # define OS_CODE 0x05 sl@0: #endif sl@0: sl@0: //#if defined(MACOS) || defined(TARGET_OS_MAC) sl@0: //# define OS_CODE 0x07 sl@0: //# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os sl@0: //# include /* for fdopen */ sl@0: //# else sl@0: //# ifndef fdopen sl@0: //# define fdopen(fd,mode) NULL /* No fdopen() */ sl@0: //# endif sl@0: //# endif sl@0: //#endif sl@0: sl@0: #ifdef __50SERIES /* Prime/PRIMOS */ sl@0: # define OS_CODE 0x0F sl@0: #endif sl@0: sl@0: #ifdef TOPS20 sl@0: # define OS_CODE 0x0a sl@0: #endif sl@0: sl@0: #if defined(_BEOS_) || defined(RISCOS) sl@0: # define fdopen(fd,mode) NULL /* No fdopen() */ sl@0: #endif sl@0: sl@0: /* sl@0: #if (defined(_MSC_VER) && (_MSC_VER > 600) && defined(__WINS__)) sl@0: # define fdopen(fd,type) _fdopen(fd,type) sl@0: #endif sl@0: */ sl@0: sl@0: /* Common defaults */ sl@0: sl@0: #ifndef OS_CODE sl@0: # define OS_CODE 0x03 /* assume Unix */ sl@0: #endif sl@0: sl@0: #ifndef F_OPEN sl@0: # define F_OPEN(name, mode) fopen((name), (mode)) sl@0: #endif sl@0: sl@0: /* functions */ sl@0: sl@0: #ifdef HAVE_STRERROR sl@0: extern char *strerror OF((int)); sl@0: # define zstrerror(errnum) strerror(errnum) sl@0: #else sl@0: # define zstrerror(errnum) "" sl@0: #endif sl@0: sl@0: #if defined(pyr) sl@0: # define NO_MEMCPY sl@0: #endif sl@0: #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__) sl@0: /* Use our own functions for small and medium model with MSC <= 5.0. sl@0: * You may have to use the same strategy for Borland C (untested). sl@0: * The __SC__ check is for Symantec. sl@0: */ sl@0: # define NO_MEMCPY sl@0: #endif sl@0: #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY) sl@0: # define HAVE_MEMCPY sl@0: #endif sl@0: #ifdef HAVE_MEMCPY sl@0: # ifdef SMALL_MEDIUM /* MSDOS small or medium model */ sl@0: # define zmemcpy _fmemcpy sl@0: # define zmemcmp _fmemcmp sl@0: # define zmemzero(dest, len) _fmemset(dest, 0, len) sl@0: # else sl@0: # define zmemcpy memcpy sl@0: # define zmemcmp memcmp sl@0: # define zmemzero(dest, len) memset(dest, 0, len) sl@0: # endif sl@0: #else sl@0: extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); sl@0: extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); sl@0: extern void zmemzero OF((Bytef* dest, uInt len)); sl@0: #endif sl@0: sl@0: // EPOC memory functions Mark Ryan, Symbian, 14/9/99 sl@0: sl@0: #define HAVE_MEMCPY sl@0: #undef zmemcpy sl@0: #undef zmemcmp sl@0: #undef zmemzero sl@0: #define zmemcpy Mem::Copy sl@0: #define zmemcmp(s1,s2,len) Mem::Compare(s1,len,s2,len) sl@0: #define zmemzero(dest, len) Mem::FillZ(dest, len) sl@0: sl@0: sl@0: sl@0: /* Diagnostic functions */ sl@0: #ifdef DEBUG sl@0: # include sl@0: extern int z_verbose; sl@0: extern void z_error OF((char *m)); sl@0: # define Assert(cond,msg) {if(!(cond)) z_error(msg);} sl@0: # define Trace(x) {if (z_verbose>=0) fprintf x ;} sl@0: # define Tracev(x) {if (z_verbose>0) fprintf x ;} sl@0: # define Tracevv(x) {if (z_verbose>1) fprintf x ;} sl@0: # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;} sl@0: # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;} sl@0: #else sl@0: # define Assert(cond,msg) sl@0: # define Trace(x) sl@0: # define Tracev(x) sl@0: # define Tracevv(x) sl@0: # define Tracec(c,x) sl@0: # define Tracecv(c,x) sl@0: #endif sl@0: sl@0: sl@0: typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf, sl@0: uInt len)); sl@0: voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size)); sl@0: void zcfree OF((voidpf opaque, voidpf ptr)); sl@0: sl@0: #define ZALLOC(strm, items, size) \ sl@0: (*((strm)->zalloc))((strm)->opaque, (items), (size)) sl@0: #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) sl@0: #define TRY_FREE(s, p) {if (p) ZFREE(s, p);} sl@0: sl@0: #endif /* _Z_UTIL_H */