infcodes.h 799 B

12345678910111213141516171819202122232425262728293031
  1. /* infcodes.h -- header to use infcodes.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 _INFCODES_H
  10. #define _INFCODES_H
  11. struct inflate_codes_state;
  12. typedef struct inflate_codes_state FAR inflate_codes_statef;
  13. local inflate_codes_statef *inflate_codes_new OF((
  14. uInt, uInt,
  15. inflate_huft *, inflate_huft *,
  16. z_streamp ));
  17. local int inflate_codes OF((
  18. inflate_blocks_statef *,
  19. z_streamp ,
  20. int));
  21. local void inflate_codes_free OF((
  22. inflate_codes_statef *,
  23. z_streamp ));
  24. #endif /* _INFCODES_H */