cut around 30 bytes of code off of zlib mode (room for more tho)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1226 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-09-30 16:49:43 +00:00
parent d85513f1c3
commit 49ff03bf0f
5 changed files with 39 additions and 11 deletions

View file

@ -54,11 +54,15 @@ struct internal_state;
typedef struct z_stream_s {
Bytef *next_in; /* next input byte */
uInt avail_in; /* number of bytes available at next_in */
#ifndef EXEHEAD
uLong total_in; /* total nb of input bytes read so far */
#endif
Bytef *next_out; /* next output byte should be put there */
uInt avail_out; /* remaining free space at next_out */
#ifndef EXEHEAD
uLong total_out; /* total nb of bytes output so far */
#endif
// char *msg; /* last error message, NULL if no error */
struct internal_state FAR *state; /* not visible by applications */