/modules/freetype2/src/gzip/infblock.h

http://github.com/zpao/v8monkey · C Header · 36 lines · 20 code · 8 blank · 8 comment · 0 complexity · 317f2f26296fdd7dc557d2f257dad678 MD5 · raw file

  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. #ifndef _INFBLOCK_H
  10. #define _INFBLOCK_H
  11. struct inflate_blocks_state;
  12. typedef struct inflate_blocks_state FAR inflate_blocks_statef;
  13. local inflate_blocks_statef * inflate_blocks_new OF((
  14. z_streamp z,
  15. check_func c, /* check function */
  16. uInt w)); /* window size */
  17. local int inflate_blocks OF((
  18. inflate_blocks_statef *,
  19. z_streamp ,
  20. int)); /* initial return code */
  21. local void inflate_blocks_reset OF((
  22. inflate_blocks_statef *,
  23. z_streamp ,
  24. uLongf *)); /* check value on output */
  25. local int inflate_blocks_free OF((
  26. inflate_blocks_statef *,
  27. z_streamp));
  28. #endif /* _INFBLOCK_H */