infcodes.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: infcodes.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:48:56  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* infcodes.h -- header to use infcodes.c
  10.  * Copyright (C) 1995-2002 Mark Adler
  11.  * For conditions of distribution and use, see copyright notice in zlib.h 
  12.  */
  13. /* WARNING: this file should *not* be used by applications. It is
  14.    part of the implementation of the compression library and is
  15.    subject to change. Applications should only use zlib.h.
  16.  */
  17. struct inflate_codes_state;
  18. typedef struct inflate_codes_state FAR inflate_codes_statef;
  19. extern inflate_codes_statef *inflate_codes_new OF((
  20.     uInt, uInt,
  21.     inflate_huft *, inflate_huft *,
  22.     z_streamp ));
  23. extern int inflate_codes OF((
  24.     inflate_blocks_statef *,
  25.     z_streamp ,
  26.     int));
  27. extern void inflate_codes_free OF((
  28.     inflate_codes_statef *,
  29.     z_streamp ));