infblock.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /* infblock.h -- header to use infblock.c
  2.  * Copyright (C) 1995-2002 Mark Adler
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* WARNING: this file should *not* be used by applications. It is
  6.    part of the implementation of the compression library and is
  7.    subject to change. Applications should only use zlib.h.
  8.  */
  9. struct inflate_blocks_state;
  10. typedef struct inflate_blocks_state FAR inflate_blocks_statef;
  11. extern inflate_blocks_statef * inflate_blocks_new OF((
  12.     z_streamp z,
  13.     check_func c,               /* check function */
  14.     uInt w));                   /* window size */
  15. extern int inflate_blocks OF((
  16.     inflate_blocks_statef *,
  17.     z_streamp ,
  18.     int));                      /* initial return code */
  19. extern void inflate_blocks_reset OF((
  20.     inflate_blocks_statef *,
  21.     z_streamp ,
  22.     uLongf *));                  /* check value on output */
  23. extern int inflate_blocks_free OF((
  24.     inflate_blocks_statef *,
  25.     z_streamp));
  26. extern void inflate_set_dictionary OF((
  27.     inflate_blocks_statef *s,
  28.     const Bytef *d,  /* dictionary */
  29.     uInt  n));       /* dictionary length */
  30. extern int inflate_blocks_sync_point OF((
  31.     inflate_blocks_statef *s));