sl@0
|
1 |
/* infcodes.h -- header to use infcodes.c
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Mark Adler
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
/* WARNING: this file should *not* be used by applications. It is
|
sl@0
|
7 |
part of the implementation of the compression library and is
|
sl@0
|
8 |
subject to change. Applications should only use zlib.h.
|
sl@0
|
9 |
*/
|
sl@0
|
10 |
|
sl@0
|
11 |
struct inflate_codes_state;
|
sl@0
|
12 |
typedef struct inflate_codes_state FAR inflate_codes_statef;
|
sl@0
|
13 |
|
sl@0
|
14 |
extern inflate_codes_statef *inflate_codes_new OF((
|
sl@0
|
15 |
uInt, uInt,
|
sl@0
|
16 |
inflate_huft *, inflate_huft *,
|
sl@0
|
17 |
z_streamp ));
|
sl@0
|
18 |
|
sl@0
|
19 |
extern int inflate_codes OF((
|
sl@0
|
20 |
inflate_blocks_statef *,
|
sl@0
|
21 |
z_streamp ,
|
sl@0
|
22 |
int));
|
sl@0
|
23 |
|
sl@0
|
24 |
extern void inflate_codes_free OF((
|
sl@0
|
25 |
inflate_codes_statef *,
|
sl@0
|
26 |
z_streamp ));
|
sl@0
|
27 |
|