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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: infblock.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:48:39  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* infblock.h -- header to use infblock.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_blocks_state;
  18. typedef struct inflate_blocks_state FAR inflate_blocks_statef;
  19. extern inflate_blocks_statef * inflate_blocks_new OF((
  20.     z_streamp z,
  21.     check_func c,               /* check function */
  22.     uInt w));                   /* window size */
  23. extern int inflate_blocks OF((
  24.     inflate_blocks_statef *,
  25.     z_streamp ,
  26.     int));                      /* initial return code */
  27. extern void inflate_blocks_reset OF((
  28.     inflate_blocks_statef *,
  29.     z_streamp ,
  30.     uLongf *));                  /* check value on output */
  31. extern int inflate_blocks_free OF((
  32.     inflate_blocks_statef *,
  33.     z_streamp));
  34. extern void inflate_set_dictionary OF((
  35.     inflate_blocks_statef *s,
  36.     const Bytef *d,  /* dictionary */
  37.     uInt  n));       /* dictionary length */
  38. extern int inflate_blocks_sync_point OF((
  39.     inflate_blocks_statef *s));