00001 /* infcodes.h -- header to use infcodes.c 00002 * Copyright (C) 1995-2002 Mark Adler 00003 * For conditions of distribution and use, see copyright notice in zlib.h 00004 */ 00005 00006 /* WARNING: this file should *not* be used by applications. It is 00007 part of the implementation of the compression library and is 00008 subject to change. Applications should only use zlib.h. 00009 */ 00010 00011 #ifndef _INFCODES_H 00012 #define _INFCODES_H 00013 00014 struct inflate_codes_state; 00015 typedef struct inflate_codes_state FAR inflate_codes_statef; 00016 00017 local inflate_codes_statef *inflate_codes_new OF(( 00018 uInt, uInt, 00019 inflate_huft *, inflate_huft *, 00020 z_streamp )); 00021 00022 local int inflate_codes OF(( 00023 inflate_blocks_statef *, 00024 z_streamp , 00025 int)); 00026 00027 local void inflate_codes_free OF(( 00028 inflate_codes_statef *, 00029 z_streamp )); 00030 00031 #endif /* _INFCODES_H */