| 1 | /* inflate.h -- internal inflate state definition
|
|---|
| 2 | * Copyright (C) 1995-2004 Mark Adler
|
|---|
| 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 | /* define NO_GZIP when compiling if you want to disable gzip header and
|
|---|
| 12 | trailer decoding by inflate(). NO_GZIP would be used to avoid linking in
|
|---|
| 13 | the crc code when it is not needed. For shared libraries, gzip decoding
|
|---|
| 14 | should be left enabled. */
|
|---|
| 15 | #ifndef NO_GZIP
|
|---|
| 16 | # define GUNZIP
|
|---|
| 17 | #endif
|
|---|
| 18 |
|
|---|
| 19 | /* Possible inflate modes between inflate() calls */
|
|---|
| 20 | typedef enum {
|
|---|
| 21 | HEAD, /* i: waiting for magic header */
|
|---|
| 22 | FLAGS, /* i: waiting for method and flags (gzip) */
|
|---|
| 23 | TIME, /* i: waiting for modification time (gzip) */
|
|---|
| 24 | OS, /* i: waiting for extra flags and operating system (gzip) */
|
|---|
| 25 | EXLEN, /* i: waiting for extra length (gzip) */
|
|---|
| 26 | EXTRA, /* i: waiting for extra bytes (gzip) */
|
|---|
| 27 | NAME, /* i: waiting for end of file name (gzip) */
|
|---|
| 28 | COMMENT, /* i: waiting for end of comment (gzip) */
|
|---|
| 29 | HCRC, /* i: waiting for header crc (gzip) */
|
|---|
| 30 | DICTID, /* i: waiting for dictionary check value */
|
|---|
| 31 | DICT, /* waiting for inflateSetDictionary() call */
|
|---|
| 32 | TYPE, /* i: waiting for type bits, including last-flag bit */
|
|---|
| 33 | TYPEDO, /* i: same, but skip check to exit inflate on new block */
|
|---|
| 34 | STORED, /* i: waiting for stored size (length and complement) */
|
|---|
| 35 | COPY, /* i/o: waiting for input or output to copy stored block */
|
|---|
| 36 | TABLE, /* i: waiting for dynamic block table lengths */
|
|---|
| 37 | LENLENS, /* i: waiting for code length code lengths */
|
|---|
| 38 | CODELENS, /* i: waiting for length/lit and distance code lengths */
|
|---|
| 39 | LEN, /* i: waiting for length/lit code */
|
|---|
|
|---|