#include "zlib.h"
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
Go to the source code of this file.
|
| #define | ZLIB_INTERNAL |
| |
| #define | local static |
| |
| #define | ERR_MSG(err) z_errmsg[Z_NEED_DICT - (err)] |
| |
| #define | ERR_RETURN(strm, err) return (strm->msg = (char*)ERR_MSG(err), (err)) |
| |
| #define | DEF_WBITS MAX_WBITS |
| |
| #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 /* preset dictionary flag in zlib header */ |
| |
| #define | OS_CODE 0x0b |
| |
| #define | F_OPEN(name, mode) fopen((name), (mode)) |
| |
| #define | vsnprintf _vsnprintf |
| |
| #define | HAVE_MEMCPY |
| |
| #define | zmemcpy memcpy |
| |
| #define | zmemcmp memcmp |
| |
| #define | zmemzero(dest, len) memset(dest, 0, len) |
| |
| #define | Assert(cond, msg) |
| |
| #define | Trace(x) |
| |
| #define | Tracev(x) |
| |
| #define | Tracevv(x) |
| |
| #define | Tracec(c, x) |
| |
| #define | Tracecv(c, x) |
| |
| #define | ZALLOC(strm, items, size) (*((strm)->zalloc))((strm)->opaque, (items), (size)) |
| |
| #define | ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) |
| |
| #define | TRY_FREE(s, p) |
| |
◆ Assert
| #define Assert |
( |
|
cond, |
|
|
|
msg |
|
) |
| |
◆ DEF_MEM_LEVEL
◆ DEF_WBITS
◆ DYN_TREES
◆ ERR_MSG
◆ ERR_RETURN
| #define ERR_RETURN |
( |
|
strm, |
|
|
|
err |
|
) |
| return (strm->msg = (char*)ERR_MSG(err), (err)) |
◆ F_OPEN
◆ HAVE_MEMCPY
◆ local
◆ MAX_MATCH
◆ MIN_MATCH
◆ OS_CODE
◆ PRESET_DICT
| #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
◆ STATIC_TREES
◆ STORED_BLOCK
◆ Trace
◆ Tracec
◆ Tracecv
◆ Tracev
◆ Tracevv
◆ TRY_FREE
| #define TRY_FREE |
( |
|
s, |
|
|
|
p |
|
) |
| |
Value:{ \
}
#define ZFREE(strm, addr)
Definition at line 287 of file zutil.h.
◆ vsnprintf
| #define vsnprintf _vsnprintf |
◆ ZALLOC
| #define ZALLOC |
( |
|
strm, |
|
|
|
items, |
|
|
|
size |
|
) |
| (*((strm)->zalloc))((strm)->opaque, (items), (size)) |
◆ ZFREE
| #define ZFREE |
( |
|
strm, |
|
|
|
addr |
|
) |
| (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) |
◆ ZLIB_INTERNAL
◆ zmemcmp
◆ zmemcpy
◆ zmemzero
| #define zmemzero |
( |
|
dest, |
|
|
|
len |
|
) |
| memset(dest, 0, len) |
◆ uch
| typedef unsigned char uch |
◆ uchf
◆ ulg
| typedef unsigned long ulg |
◆ ush
| typedef unsigned short ush |
◆ ushf
◆ OF() [1/2]
◆ OF() [2/2]
◆ z_errmsg
| const char* const z_errmsg[10] |