Mercurial > repos > blastem
comparison zlib/inflate.h @ 2690:9ef72ee5c0b0
Update vendored zlib to 1.3.1
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 15 Jun 2025 15:39:33 -0700 |
parents | 00d788dac91a |
children |
comparison
equal
deleted
inserted
replaced
2689:bd6e33de0972 | 2690:9ef72ee5c0b0 |
---|---|
1 /* inflate.h -- internal inflate state definition | 1 /* inflate.h -- internal inflate state definition |
2 * Copyright (C) 1995-2016 Mark Adler | 2 * Copyright (C) 1995-2019 Mark Adler |
3 * For conditions of distribution and use, see copyright notice in zlib.h | 3 * For conditions of distribution and use, see copyright notice in zlib.h |
4 */ | 4 */ |
5 | 5 |
6 /* WARNING: this file should *not* be used by applications. It is | 6 /* WARNING: this file should *not* be used by applications. It is |
7 part of the implementation of the compression library and is | 7 part of the implementation of the compression library and is |
84 inflate_mode mode; /* current inflate mode */ | 84 inflate_mode mode; /* current inflate mode */ |
85 int last; /* true if processing last block */ | 85 int last; /* true if processing last block */ |
86 int wrap; /* bit 0 true for zlib, bit 1 true for gzip, | 86 int wrap; /* bit 0 true for zlib, bit 1 true for gzip, |
87 bit 2 true to validate check value */ | 87 bit 2 true to validate check value */ |
88 int havedict; /* true if dictionary provided */ | 88 int havedict; /* true if dictionary provided */ |
89 int flags; /* gzip header method and flags (0 if zlib) */ | 89 int flags; /* gzip header method and flags, 0 if zlib, or |
90 -1 if raw or no header yet */ | |
90 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ | 91 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ |
91 unsigned long check; /* protected copy of check value */ | 92 unsigned long check; /* protected copy of check value */ |
92 unsigned long total; /* protected copy of output count */ | 93 unsigned long total; /* protected copy of output count */ |
93 gz_headerp head; /* where to save gzip header information */ | 94 gz_headerp head; /* where to save gzip header information */ |
94 /* sliding window */ | 95 /* sliding window */ |