sl@0
|
1 |
/* infblock.h -- header to use infblock.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_blocks_state;
|
sl@0
|
12 |
typedef struct inflate_blocks_state FAR inflate_blocks_statef;
|
sl@0
|
13 |
|
sl@0
|
14 |
extern inflate_blocks_statef * inflate_blocks_new OF((
|
sl@0
|
15 |
z_streamp z,
|
sl@0
|
16 |
check_func c, /* check function */
|
sl@0
|
17 |
uInt w)); /* window size */
|
sl@0
|
18 |
|
sl@0
|
19 |
extern int inflate_blocks OF((
|
sl@0
|
20 |
inflate_blocks_statef *,
|
sl@0
|
21 |
z_streamp ,
|
sl@0
|
22 |
int)); /* initial return code */
|
sl@0
|
23 |
|
sl@0
|
24 |
extern void inflate_blocks_reset OF((
|
sl@0
|
25 |
inflate_blocks_statef *,
|
sl@0
|
26 |
z_streamp ,
|
sl@0
|
27 |
uLongf *)); /* check value on output */
|
sl@0
|
28 |
|
sl@0
|
29 |
extern int inflate_blocks_free OF((
|
sl@0
|
30 |
inflate_blocks_statef *,
|
sl@0
|
31 |
z_streamp));
|
sl@0
|
32 |
|
sl@0
|
33 |
extern void inflate_set_dictionary OF((
|
sl@0
|
34 |
inflate_blocks_statef *s,
|
sl@0
|
35 |
const Bytef *d, /* dictionary */
|
sl@0
|
36 |
uInt n)); /* dictionary length */
|
sl@0
|
37 |
|
sl@0
|
38 |
extern int inflate_blocks_sync_point OF((
|
sl@0
|
39 |
inflate_blocks_statef *s));
|