
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1233 212acab6-be3b-0410-9dea-997c60f758d6
27 lines
561 B
C
27 lines
561 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
|
|
*/
|
|
|
|
|
|
extern int inflate_trees_bits OF((
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft *));
|
|
|
|
extern int inflate_trees_dynamic OF((
|
|
uInt,
|
|
uInt,
|
|
uIntf *,
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft *));
|
|
|
|
extern void inflate_trees_fixed OF((
|
|
uIntf *,
|
|
uIntf *,
|
|
inflate_huft * FAR *,
|
|
inflate_huft * FAR *));
|