reduced zlib size by 16 or so

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1208 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-09-27 05:17:56 +00:00
parent 4811f17832
commit 6a6260aeb6
3 changed files with 25 additions and 30 deletions

View file

@ -92,6 +92,19 @@ extern int inflate_flush OF((
z_streamp ,
int));
struct internal_state {int dummy;}; /* for buggy compilers */
struct internal_state {
/* mode dependent information */
union {
uInt method; /* if FLAGS, method byte */
struct {
uLong was; /* computed check value */
uLong need; /* stream check value */
} check; /* if CHECK, check values to compare */
uInt marker; /* if BAD, inflateSync's marker bytes count */
} sub; /* submode */
struct inflate_blocks_state blocks; /* current inflate_blocks state */
};
#endif