|
Classes |
struct | z_stream_s |
Defines |
#define | ZLIB_VERSION "1.1.3" |
#define | PALMOS |
#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_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 | ZLSetup |
#define | ZLTeardown |
#define | deflateInit2(strm, level, method, windowBits, memLevel, strategy) |
#define | inflateInit2(strm, windowBits) ZLibinflateinit2((ZLibRef), (strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) |
#define | deflateInit(a, b) ZLibdeflateinit2((ZLibRef), a, b, Z_DEFLATED, 13, 6, Z_DEFAULT_STRATEGY, ZLIB_VERSION, sizeof(z_stream)) |
#define | deflateInit_(a, b, c, d) ZLibdeflateinit2((ZLibRef), a, b, Z_DEFLATED, 13, 6, Z_DEFAULT_STRATEGY, c, d) |
#define | inflateInit(a) ZLibinflateinit2((ZLibRef), a, 15, ZLIB_VERSION, sizeof(z_stream)) |
#define | inflateInit_(a, b, c) ZLibinflateinit2((ZLibRef), a, 15, b, c) |
#define | inflate(x, y) ZLibinflate(ZLibRef,x,y) |
#define | deflate(x, y) ZLibdeflate(ZLibRef,x,y) |
#define | inflateEnd(x) ZLibinflateend(ZLibRef,x) |
#define | deflateEnd(x) ZLibdeflateend(ZLibRef,x) |
#define | crc32(a, b, c) ZLibcrc32(ZLibRef,a,b,c) |
#define | adler32(a, b, c) ZLibadler32(ZLibRef,a,b,c) |
Typedefs |
typedef voidpf alloc_func | OF ((voidpf opaque, uInt items, uInt size)) |
typedef void free_func | OF ((voidpf opaque, voidpf address)) |
typedef z_stream_s | z_stream |
typedef z_stream FAR * | z_streamp |
Functions |
Err | ZLibOpen (UInt refNum) SYS_TRAP(sysLibTrapOpen) |
Err | ZLibClose (UInt refNum, UIntPtr numappsP) SYS_TRAP(sysLibTrapClose) |
Err | ZLibSleep (UInt refNum) SYS_TRAP(sysLibTrapSleep) |
Err | ZLibWake (UInt refNum) SYS_TRAP(sysLibTrapWake) |
Err | ZLibdeflateinit2 (UInt refnum, z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) SYS_TRAP(sysLibTrapCustom) |
Err | ZLibdeflate (UInt refnum, z_streamp strm, int flush) SYS_TRAP(sysLibTrapCustom+1) |
Err | ZLibdeflateend (UInt refnum, z_streamp strm) SYS_TRAP(sysLibTrapCustom+2) |
Err | ZLibinflateinit2 (UInt refnum, z_streamp strm, int windowBits, const char *version, int stream_size) SYS_TRAP(sysLibTrapCustom+3) |
Err | ZLibinflate (UInt refnum, z_streamp strm, int flush) SYS_TRAP(sysLibTrapCustom+4) |
Err | ZLibinflateend (UInt refnum, z_streamp strm) SYS_TRAP(sysLibTrapCustom+5) |
uLong | ZLibcrc32 (UInt refnum, uLong crc, const Bytef *buf, uInt len) SYS_TRAP(sysLibTrapCustom+6) |
uLong | ZLibadler32 (UInt refnum, uLong adler, const Bytef *buf, uInt len) SYS_TRAP(sysLibTrapCustom+7) |
Err | ZLibcompress2 (UInt refnum, Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level) SYS_TRAP(sysLibTrapCustom+8) |
Err | ZLibuncompress (UInt refnum, Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) SYS_TRAP(sysLibTrapCustom+9) |
Variables |
UInt | ZLibRef = 0 |