ReactOS 0.4.16-dev-424-ge4748fe
|
#include "windef.h"
Go to the source code of this file.
Classes | |
struct | z_stream_s |
struct | gz_header_s |
Macros | |
#define | FAR |
#define | z_const const |
#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_BLOCK 5 |
#define | Z_TREES 6 |
#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_RLE 3 |
#define | Z_FIXED 4 |
#define | Z_DEFAULT_STRATEGY 0 |
#define | Z_BINARY 0 |
#define | Z_TEXT 1 |
#define | Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ |
#define | Z_UNKNOWN 2 |
#define | Z_DEFLATED 8 |
#define | Z_NULL 0 /* for initializing zalloc, zfree, opaque */ |
#define | MAX_WBITS 15 /* 32K LZ77 window */ |
#define | MAX_MEM_LEVEL 9 |
Typedefs | |
typedef unsigned char | Byte |
typedef unsigned int | uInt |
typedef unsigned long | uLong |
typedef Byte FAR | Bytef |
typedef void FAR * | voidpf |
typedef char FAR | charf |
typedef int FAR | intf |
typedef unsigned char | uch |
typedef uch FAR | uchf |
typedef unsigned short | ush |
typedef ush FAR | ushf |
typedef unsigned long | ulg |
typedef voidpf(* | alloc_func) (voidpf opaque, uInt items, uInt size) |
typedef void(* | free_func) (voidpf opaque, voidpf address) |
typedef struct z_stream_s | z_stream |
typedef z_stream FAR * | z_streamp |
typedef struct gz_header_s | gz_header |
typedef gz_header FAR * | gz_headerp |
Functions | |
int | inflateInit (z_streamp strm) DECLSPEC_HIDDEN |
int | inflateInit2 (z_streamp strm, int windowBits) DECLSPEC_HIDDEN |
int | inflate (z_streamp strm, int flush) DECLSPEC_HIDDEN |
int | inflateEnd (z_streamp strm) DECLSPEC_HIDDEN |
int | deflateInit (z_streamp strm, int level) DECLSPEC_HIDDEN |
int | deflateInit2 (z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy) DECLSPEC_HIDDEN |
int | deflate (z_streamp strm, int flush) DECLSPEC_HIDDEN |
int | deflateEnd (z_streamp strm) DECLSPEC_HIDDEN |
typedef struct gz_header_s gz_header |
typedef gz_header FAR* gz_headerp |
typedef struct z_stream_s z_stream |
Definition at line 815 of file deflate.c.
Referenced by deflateParams().
Definition at line 1130 of file deflate.c.
Referenced by deflateCopy(), and deflateInit2_().
int deflateInit2 | ( | z_streamp | strm, |
int | level, | ||
int | method, | ||
int | windowBits, | ||
int | memLevel, | ||
int | strategy | ||
) |
Definition at line 1257 of file inflate.c.
Referenced by dwarf2_init_zsection(), ExtractZipImage(), gz_decomp(), gzip_read(), MSZipCodecUncompress(), test_boundsrect(), CMSZipCodec::Uncompress(), uncompress2(), unzReadCurrentFile(), and zlib_decompress().
Definition at line 1910 of file inflate.c.
Referenced by dwarf2_init_zsection(), ExtractZipImage(), gzclose_r(), gzip_destroy(), gzip_read(), MSZipCodecUncompress(), CMSZipCodec::Uncompress(), uncompress2(), unzCloseCurrentFile(), and zlib_decompress().