sl@0: /* infcodes.h -- header to use infcodes.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_codes_state; sl@0: typedef struct inflate_codes_state FAR inflate_codes_statef; sl@0: sl@0: extern inflate_codes_statef *inflate_codes_new OF(( sl@0: uInt, uInt, sl@0: inflate_huft *, inflate_huft *, sl@0: z_streamp )); sl@0: sl@0: extern int inflate_codes OF(( sl@0: inflate_blocks_statef *, sl@0: z_streamp , sl@0: int)); sl@0: sl@0: extern void inflate_codes_free OF(( sl@0: inflate_codes_statef *, sl@0: z_streamp )); sl@0: