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.

zip.h 803B

12345678910111213141516171819202122232425
  1. /*
  2. Copyright (c) 1990-2005 Info-ZIP. All rights reserved.
  3. See the accompanying file LICENSE, version 2003-May-08 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. /* This is a dummy zip.h to allow the source files shared with Zip
  9. (crypt.c, crc32.c, ttyio.c, win32/win32i64.c) to compile for UnZip.
  10. (In case you are looking for the Info-ZIP license, please follow
  11. the pointers above.) */
  12. #ifndef __zip_h /* don't include more than once */
  13. #define __zip_h
  14. #define UNZIP_INTERNAL
  15. #include "unzip.h"
  16. #define local static
  17. #define ZE_MEM PK_MEM
  18. #define ziperr(c, h) return
  19. #endif /* !__zip_h */