This commit was generated by cvs2svn to compensate for changes in r2,
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
This commit is contained in:
parent
9b3b220a13
commit
3e9e73ec59
177 changed files with 37677 additions and 0 deletions
45
Source/zlib/INFTREES.H
Normal file
45
Source/zlib/INFTREES.H
Normal file
|
@ -0,0 +1,45 @@
|
|||
/* 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));
|
Loading…
Add table
Add a link
Reference in a new issue