some big size savings (removed zalloc requirement from runtime yay)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1275 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
87269acd79
commit
4e6828b511
4 changed files with 69 additions and 105 deletions
|
@ -3,16 +3,10 @@
|
|||
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||
*/
|
||||
|
||||
struct inflate_codes_state;
|
||||
typedef struct inflate_codes_state FAR inflate_codes_statef;
|
||||
|
||||
extern inflate_codes_statef *inflate_codes_new OF((
|
||||
uInt, uInt,
|
||||
extern void inflate_codes_new OF((
|
||||
inflate_codes_statef *, uInt, uInt,
|
||||
inflate_huft *, inflate_huft *));
|
||||
|
||||
extern int inflate_codes OF((
|
||||
z_streamp ,
|
||||
int));
|
||||
|
||||
#define inflate_codes_free(z,c) ZFREE(z,c)
|
||||
|
||||
int));
|
Loading…
Add table
Add a link
Reference in a new issue