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.

90 lines
3.0KB

  1. /*
  2. Copyright (c) 1990-2009 Info-ZIP. All rights reserved.
  3. See the accompanying file LICENSE, version 2009-Jan-02 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. unzvers.h (for UnZip) by Info-ZIP.
  10. */
  11. #ifndef __unzvers_h /* don't include more than once */
  12. #define __unzvers_h
  13. #ifdef BETA
  14. # undef BETA /* undefine BETA for public releases */
  15. #endif
  16. #ifdef BETA
  17. # define UZ_BETALEVEL "h03 BETA"
  18. # define UZ_VERSION_DATE "17 Apr 09" /* internal beta version */
  19. #else
  20. # define UZ_BETALEVEL ""
  21. # define UZ_VERSION_DATE "20 April 2009" /* official release version */
  22. # define RELEASE
  23. #endif
  24. #define UZ_MAJORVER 6 /* UnZip */
  25. #define UZ_MINORVER 0
  26. #define ZI_MAJORVER 3 /* ZipInfo */
  27. #define ZI_MINORVER 0
  28. #define UZ_PATCHLEVEL 0
  29. #define UZ_VER_STRING "6.0" /* keep in sync with Version numbers! */
  30. #ifndef IZ_COMPANY_NAME /* might be already defined... */
  31. # define IZ_COMPANY_NAME "Info-ZIP"
  32. #endif
  33. /* these are obsolete but remain for backward compatibility: */
  34. #if (defined(OS2) || defined(__OS2__))
  35. # define D2_MAJORVER UZ_MAJORVER /* DLL for OS/2 */
  36. # define D2_MINORVER UZ_MINORVER
  37. # define D2_PATCHLEVEL UZ_PATCHLEVEL
  38. #endif
  39. #define DW_MAJORVER UZ_MAJORVER /* DLL for MS Windows */
  40. #define DW_MINORVER UZ_MINORVER
  41. #define DW_PATCHLEVEL UZ_PATCHLEVEL
  42. #define WIN_VERSION_DATE UZ_VERSION_DATE
  43. #define UNZ_DLL_VERSION UZ_VER_STRING
  44. /* The following version constants specify the UnZip version that introduced
  45. * the most recent incompatible change (means: change that breaks backward
  46. * compatibility) of a DLL/Library binary API definition.
  47. *
  48. * Currently, UnZip supports three distinct DLL/Library APIs, which each
  49. * carry their own "compatibility level":
  50. * a) The "generic" (console-mode oriented) API has been used on UNIX,
  51. * for example. This API provides a "callable" interface similar to the
  52. * interactive command line of the normal program executables.
  53. * b) The OS/2-only API provides (additional) functions specially tailored
  54. * for interfacing with the REXX shell.
  55. * c) The Win32 DLL API with a pure binary interface which can be used to
  56. * build GUI mode as well as Console mode applications.
  57. *
  58. * Whenever a change that breaks backward compatibility gets applied to
  59. * any of the DLL/Library APIs, the corresponding compatibility level should
  60. * be synchronized with the current UnZip version numbers.
  61. */
  62. /* generic DLL API minimum compatible version*/
  63. #define UZ_GENAPI_COMP_MAJOR 6
  64. #define UZ_GENAPI_COMP_MINOR 0
  65. #define UZ_GENAPI_COMP_REVIS 0
  66. /* os2dll API minimum compatible version*/
  67. #define UZ_OS2API_COMP_MAJOR 6
  68. #define UZ_OS2API_COMP_MINOR 0
  69. #define UZ_OS2API_COMP_REVIS 0
  70. /* windll API minimum compatible version*/
  71. #define UZ_WINAPI_COMP_MAJOR 6
  72. #define UZ_WINAPI_COMP_MINOR 0
  73. #define UZ_WINAPI_COMP_REVIS 0
  74. #endif /* !__unzvers_h */