
which included commits to RCS files with non-trunk default branches. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@625 212acab6-be3b-0410-9dea-997c60f758d6
45 lines
999 B
C
45 lines
999 B
C
/* inftrees.h -- header to use inftrees.c
|
|
* Copyright (C) 1995-1998 Mark Adler
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
|
|
typedef struct inflate_huft_s FAR inflate_huft;
|
|
|
|
struct inflate_huft_s {
|
|
union {
|
|
struct {
|
|
Byte Exop; /* number of extra bits or operation */
|
|
Byte Bits; /* number of bits in this code or subcode */
|
|
} what;
|
|
} word;
|
|
unsigned short base; /* literal, length base, distance base,
|
|
or table offset */
|
|
};
|
|
|
|
#define MANY 1440
|
|
|
|
extern int inflate_trees_bits OF((
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft *,
|
|
z_streamp));
|
|
|
|
extern int inflate_trees_dynamic OF((
|
|
uInt,
|
|
uInt,
|
|
uIntf *,
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft *,
|
|
z_streamp));
|
|
|
|
extern int inflate_trees_fixed OF((
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft * FAR *,
|
|
z_streamp));
|