2 bytes removed from zlib hehe long way to go to catch up to bzip2
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1246 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
6a5694d64a
commit
1f2a8f90c2
2 changed files with 2 additions and 4 deletions
|
@ -15,14 +15,12 @@
|
|||
#include "infcodes.h"
|
||||
#include "infutil.h"
|
||||
|
||||
int ZEXPORT inflateInit(z_streamp z)
|
||||
void inflateInit(z_streamp z)
|
||||
{
|
||||
z->blocks.end = z->blocks.window + (1 << DEF_WBITS);
|
||||
z->blocks.mode = TYPE;
|
||||
|
||||
inflateReset(z);
|
||||
|
||||
return Z_OK;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -196,7 +196,7 @@ typedef z_stream FAR *z_streamp;
|
|||
ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
|
||||
|
||||
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
|
||||
ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
|
||||
ZEXTERN void ZEXPORT inflateInit OF((z_streamp strm));
|
||||
|
||||
int ZEXPORT inflate(z_streamp z);
|
||||
ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue