sl@0: /* infblock.h -- header to use infblock.c sl@0: * Copyright (C) 1995-1998 Mark Adler sl@0: * For conditions of distribution and use, see copyright notice in zlib.h sl@0: */ sl@0: sl@0: /* WARNING: this file should *not* be used by applications. It is sl@0: part of the implementation of the compression library and is sl@0: subject to change. Applications should only use zlib.h. sl@0: */ sl@0: sl@0: struct inflate_blocks_state; sl@0: typedef struct inflate_blocks_state FAR inflate_blocks_statef; sl@0: sl@0: extern inflate_blocks_statef * inflate_blocks_new OF(( sl@0: z_streamp z, sl@0: check_func c, /* check function */ sl@0: uInt w)); /* window size */ sl@0: sl@0: extern int inflate_blocks OF(( sl@0: inflate_blocks_statef *, sl@0: z_streamp , sl@0: int)); /* initial return code */ sl@0: sl@0: extern void inflate_blocks_reset OF(( sl@0: inflate_blocks_statef *, sl@0: z_streamp , sl@0: uLongf *)); /* check value on output */ sl@0: sl@0: extern int inflate_blocks_free OF(( sl@0: inflate_blocks_statef *, sl@0: z_streamp)); sl@0: sl@0: extern void inflate_set_dictionary OF(( sl@0: inflate_blocks_statef *s, sl@0: const Bytef *d, /* dictionary */ sl@0: uInt n)); /* dictionary length */ sl@0: sl@0: extern int inflate_blocks_sync_point OF(( sl@0: inflate_blocks_statef *s));