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.

55 lines
2.0KB

  1. /*
  2. Copyright (c) 1990-2001 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. /*---------------------------------------------------------------------------
  9. consts.h
  10. This file contains global, initialized variables that never change. It is
  11. included by unzip.c and windll/windll.c.
  12. ---------------------------------------------------------------------------*/
  13. /* And'ing with mask_bits[n] masks the lower n bits */
  14. ZCONST unsigned near mask_bits[17] = {
  15. 0x0000,
  16. 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  17. 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  18. };
  19. ZCONST char Far VersionDate[] = UZ_VERSION_DATE; /* now defined in unzvers.h */
  20. #ifndef SFX
  21. ZCONST char Far EndSigMsg[] =
  22. "\nnote: didn't find end-of-central-dir signature at end of central dir.\n";
  23. #endif
  24. ZCONST char Far CentSigMsg[] =
  25. "error: expected central file header signature not found (file #%lu).\n";
  26. ZCONST char Far SeekMsg[] =
  27. "error [%s]: attempt to seek before beginning of zipfile\n%s";
  28. ZCONST char Far FilenameNotMatched[] = "caution: filename not matched: %s\n";
  29. ZCONST char Far ExclFilenameNotMatched[] =
  30. "caution: excluded filename not matched: %s\n";
  31. #ifdef VMS
  32. ZCONST char Far ReportMsg[] = "\
  33. (please check that you have transferred or created the zipfile in the\n\
  34. appropriate BINARY mode--this includes ftp, Kermit, AND unzip'd zipfiles)\n";
  35. #else
  36. ZCONST char Far ReportMsg[] = "\
  37. (please check that you have transferred or created the zipfile in the\n\
  38. appropriate BINARY mode and that you have compiled UnZip properly)\n";
  39. #endif
  40. #ifndef SFX
  41. ZCONST char Far Zipnfo[] = "zipinfo";
  42. ZCONST char Far CompiledWith[] = "Compiled with %s%s for %s%s%s%s.\n\n";
  43. #endif