Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

inflate.h 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Copyright (c) 1990-2000 Info-ZIP. All rights reserved.
  3. See the accompanying file LICENSE, version 2000-Apr-09 or later
  4. (the contents of which are also included in unzip.h) for terms of use.
  5. If, for some reason, all these files are missing, the Info-ZIP license
  6. also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
  7. */
  8. /* inflate.h for UnZip -- by Mark Adler
  9. version c14f, 23 November 1995 */
  10. /* Copyright history:
  11. - Starting with UnZip 5.41 of 16-April-2000, this source file
  12. is covered by the Info-Zip LICENSE cited above.
  13. - Prior versions of this source file, found in UnZip source packages
  14. up to UnZip 5.40, were put in the public domain.
  15. The original copyright note by Mark Adler was:
  16. "You can do whatever you like with this source file,
  17. though I would prefer that if you modify it and
  18. redistribute it that you include comments to that effect
  19. with your name and the date. Thank you."
  20. History:
  21. vers date who what
  22. ---- --------- -------------- ------------------------------------
  23. c14 12 Mar 93 M. Adler made inflate.c standalone with the
  24. introduction of inflate.h.
  25. c14d 28 Aug 93 G. Roelofs replaced flush/FlushOutput with new version
  26. c14e 29 Sep 93 G. Roelofs moved everything into unzip.h; added crypt.h
  27. c14f 23 Nov 95 G. Roelofs added UNZIP_INTERNAL to accommodate newly
  28. split unzip.h
  29. */
  30. #define UNZIP_INTERNAL
  31. #include "unzip.h" /* provides slide[], typedefs and macros */
  32. #ifdef FUNZIP
  33. # include "crypt.h" /* provides NEXTBYTE macro for crypt version of funzip */
  34. #endif