| 1 | /* zutil.h -- internal interface and configuration of the compression library
|
|---|
| 2 | * Copyright (C) 1995-2005 Jean-loup Gailly.
|
|---|
| 3 | * For conditions of distribution and use, see copyright notice in zlib.h
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 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.
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | /* @(#) $Id$ */
|
|---|
| 12 |
|
|---|
| 13 | #ifndef ZUTIL_H
|
|---|
| 14 | #define ZUTIL_H
|
|---|
| 15 |
|
|---|
| 16 | #define ZLIB_INTERNAL
|
|---|
| 17 | #include "zlib.h"
|
|---|
| 18 |
|
|---|
| 19 | #ifdef STDC
|
|---|
| 20 | # ifndef _WIN32_WCE
|
|---|
| 21 | # include <stddef.h>
|
|---|
| 22 | # endif
|
|---|
| 23 | # include <string.h>
|
|---|
| 24 | # include <stdlib.h>
|
|---|
| 25 | #endif
|
|---|
| 26 | #ifdef NO_ERRNO_H
|
|---|
| 27 | # ifdef _WIN32_WCE
|
|---|
| 28 | /* The Microsoft C Run-Time Library for Windows CE doesn't have
|
|---|
| 29 | * errno. We define it as a global variable to simplify porting.
|
|---|
| 30 | * Its value is always 0 and should not be used. We rename it to
|
|---|
| 31 | * avoid conflict with other libraries that use the same workaround.
|
|---|
| 32 | */
|
|---|
| 33 | # define errno z_errno
|
|---|
| 34 | # endif
|
|---|
| 35 | extern int errno;
|
|---|
| 36 | #else
|
|---|
| 37 | # ifndef _WIN32_WCE
|
|---|
| 38 | # include <errno.h>
|
|---|
| 39 | # endif
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
| 42 | #ifndef local
|
|---|
| 43 | # define local static
|
|---|
| 44 | #endif
|
|---|
| 45 | /* compile with -Dlocal if your debugger can't find static symbols */
|
|---|
| 46 |
|
|---|
| 47 | typedef unsigned char uch;
|
|---|
| 48 | typedef uch FAR uchf;
|
|---|
| 49 | typedef unsigned short ush;
|
|---|
| 50 | typedef ush FAR ushf;
|
|---|
| 51 | typedef unsigned long ulg;
|
|---|
| 52 |
|
|---|
| 53 | extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
|---|
| 54 | /* (size given to avoid silly warnings with Visual C++) */
|
|---|
| 55 |
|
|---|
| 56 | #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
|---|
| 57 |
|
|---|
| 58 | #define ERR_RETURN(strm,err) \
|
|---|
| 59 | return (strm->msg = (char*)ERR_MSG(err), (err))
|
|---|
| 60 | /* To be used only when the state is known to be valid */
|
|---|
| 61 |
|
|---|
| 62 | /* common constants */
|
|---|
| 63 |
|
|---|
| 64 | #ifndef DEF_WBITS
|
|---|
| 65 | # define DEF_WBITS MAX_WBITS
|
|---|
| 66 | #endif
|
|---|
| 67 | /* default windowBits for decompression. MAX_WBITS is for compression only */
|
|---|
| 68 |
|
|---|
| 69 | #if MAX_MEM_LEVEL >= 8
|
|---|
| 70 | # define DEF_MEM_LEVEL 8
|
|---|
| 71 | #else
|
|---|
| 72 | # define DEF_MEM_LEVEL MAX_MEM_LEVEL
|
|---|
| 73 | #endif
|
|---|
| 74 | /* default memLevel */
|
|---|
| 75 |
|
|---|
| 76 | #define STORED_BLOCK 0
|
|---|
| 77 | #define STATIC_TREES 1
|
|---|
| 78 | #define DYN_TREES 2
|
|---|
| 79 | /* The three kinds of block type */
|
|---|
| 80 |
|
|---|
| 81 | #define MIN_MATCH 3
|
|---|
| 82 | #define MAX_MATCH 258
|
|---|
| 83 | /* The minimum and maximum match lengths */
|
|---|
| 84 |
|
|---|
| 85 | #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
|
|---|
| 86 |
|
|---|
| 87 | /* target dependencies */
|
|---|
| 88 |
|
|---|
| 89 | #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
|
|---|
| 90 | # define OS_CODE 0x00
|
|---|
| 91 | # if defined(__TURBOC__) || defined(__BORLANDC__)
|
|---|
| 92 | # if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
|
|---|
| 93 | /* Allow compilation with ANSI keywords only enabled */
|
|---|
| 94 | void _Cdecl farfree( void *block );
|
|---|
| 95 | void *_Cdecl farmalloc( unsigned long nbytes );
|
|---|
| 96 | # else
|
|---|
| 97 | # include <alloc.h>
|
|---|
| 98 | # endif
|
|---|
| 99 | # else /* MSC or DJGPP */
|
|---|
| 100 | # include <malloc.h>
|
|---|
| 101 | # endif
|
|---|
| 102 | #endif
|
|---|
| 103 |
|
|---|
| 104 | #ifdef AMIGA
|
|---|
| 105 | # define OS_CODE 0x01
|
|---|
| 106 | #endif
|
|---|
| 107 |
|
|---|
| 108 | #if defined(VAXC) || defined(VMS)
|
|---|
| 109 | # define OS_CODE 0x02
|
|---|
| 110 | # define F_OPEN(name, mode) \
|
|---|
| 111 | fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
|
|---|
| 112 | #endif
|
|---|
| 113 |
|
|---|
| 114 | #if defined(ATARI) || defined(atarist)
|
|---|
| 115 | # define OS_CODE 0x05
|
|---|
| 116 | #endif
|
|---|
| 117 |
|
|---|
|
|---|