00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 struct inflate_blocks_state;
00012 typedef struct inflate_blocks_state FAR inflate_blocks_statef;
00013
00014 extern inflate_blocks_statef * inflate_blocks_new OF((
00015 z_streamp z,
00016 check_func c,
00017 uInt w));
00018
00019 extern int inflate_blocks OF((
00020 inflate_blocks_statef *,
00021 z_streamp ,
00022 int));
00023
00024 extern void inflate_blocks_reset OF((
00025 inflate_blocks_statef *,
00026 z_streamp ,
00027 uLongf *));
00028
00029 extern int inflate_blocks_free OF((
00030 inflate_blocks_statef *,
00031 z_streamp));
00032
00033 extern void inflate_set_dictionary OF((
00034 inflate_blocks_statef *s,
00035 const Bytef *d,
00036 uInt n));
00037
00038 extern int inflate_blocks_sync_point OF((
00039 inflate_blocks_statef *s));