|
Defines |
#define | ZStream z_stream |
#define | ZLIB_VERSION "0.92" |
#define | ZLIB_VERSIONNO 0.92 |
#define | ZLIB_MAJOR_VERSIONNO 0 |
#define | ZLIB_MINOR_VERSIONNO 99 |
#define | ERR_MSG(err) (char*)z_errmsg[Z_NEED_DICT-(err)] |
#define | ERR_RETURN(strm, err) return (err) |
| * To be used only when the state is known to be valid */
|
#define | DEFLATED 8 |
#define | DEF_WBITS 15 |
#define | MAX_MEM_LEVEL 9 |
#define | MAX_WBITS 15 |
#define | DEF_MEM_LEVEL 8 |
#define | STORED_BLOCK 0 |
#define | STATIC_TREES 1 |
#define | DYN_TREES 2 |
#define | MIN_MATCH 3 |
#define | MAX_MATCH 258 |
#define | PRESET_DICT 0x20 |
#define | Z_NO_FLUSH 0 |
#define | Z_PARTIAL_FLUSH 1 |
#define | Z_SYNC_FLUSH 2 |
#define | Z_FULL_FLUSH 3 |
#define | Z_FINISH 4 |
#define | Z_OK 0 |
#define | Z_STREAM_END 1 |
#define | Z_NEED_DICT 2 |
#define | Z_ERRNO (-1) |
#define | Z_STREAM_ERROR (-2) |
#define | Z_DATA_ERROR (-3) |
#define | Z_MEM_ERROR (-4) |
#define | Z_BUF_ERROR (-5) |
#define | Z_VERSION_ERROR (-6) |
#define | Z_UNCOMPRESSED_ERROR (-7) |
#define | Z_NO_COMPRESSION 0 |
#define | Z_BEST_SPEED 1 |
#define | Z_BEST_COMPRESSION 9 |
#define | Z_DEFAULT_COMPRESSION (-1) |
#define | Z_FILTERED 1 |
#define | Z_HUFFMAN_ONLY 2 |
#define | Z_DEFAULT_STRATEGY 0 |
#define | Z_BINARY 0 |
#define | Z_ASCII 1 |
#define | Z_UNKNOWN 2 |
#define | Z_DEFLATED 8 |
#define | Z_NULL 0 |
#define | OS_CODE 0x0b |
#define | zmemcpy memcpy |
#define | zmemcmp memcmp |
#define | zmemzero(dest, len) memset(dest, 0, len) |
#define | _FTPRINTF TRACEUSER( "Neville", _T("%s"),x) |
#define | Assert(cond, msg) |
#define | Trace(x) |
#define | Tracev(x) |
#define | Tracevv(x) |
#define | Tracec(c, x) |
#define | Tracecv(c, x) |
#define | z_error(m) ERROR3(m); |
#define | ZALLOC(strm, items, size) (*((strm)->zalloc))((strm)->opaque, (items), (size)) |
#define | ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (void*)(addr)) |
#define | TRY_FREE(s, p) {if (p) ZFREE(s, p);} |
Typedefs |
typedef void FAR * | voidpf |
typedef void * | voidp |
typedef unsigned char | Byte |
typedef UINT32 | uInt |
typedef UINT32 | uLong |
typedef Byte FAR | Bytef |
typedef char FAR | charf |
typedef INT32 FAR | intf |
typedef uInt FAR | uIntf |
typedef uLong FAR | uLongf |
typedef unsigned char | uch |
typedef uch FAR | uchf |
typedef unsigned short | ush |
typedef ush FAR | ushf |
typedef UINT32 | ulg |
typedef uLong(* | check_func )(uLong check, const Bytef *buf, uInt len) |