1/*
2  Copyright (c) 1990-2002 Info-ZIP.  All rights reserved.
3
4  See the accompanying file LICENSE, version 2000-Apr-09 or later
5  (the contents of which are also included in unzip.h) for terms of use.
6  If, for some reason, all these files are missing, the Info-ZIP license
7  also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
8*/
9/*
10   unzvers.h (for UnZip) by Info-ZIP.
11 */
12
13#ifndef __unzvers_h     /* don't include more than once */
14#define __unzvers_h
15
16#ifdef BETA
17#  undef BETA           /* undefine BETA for public releases */
18#endif
19
20#ifdef BETA
21#  define UZ_BETALEVEL      "k BETA"
22#  define UZ_VERSION_DATE   "17 Feb 02"         /* internal beta version */
23#else
24#  define UZ_BETALEVEL      ""
25#  define UZ_VERSION_DATE   "17 February 2002"  /* official release version */
26#  define RELEASE
27#endif
28
29#define UZ_MAJORVER    5   /* UnZip */
30#define UZ_MINORVER    5
31
32#define ZI_MAJORVER    2   /* ZipInfo */
33#define ZI_MINORVER    4
34
35#define UZ_PATCHLEVEL  0
36
37#define UZ_VER_STRING  "5.5"         /* keep in sync with Version numbers! */
38
39#ifndef IZ_COMPANY_NAME              /* might be already defined... */
40#  define IZ_COMPANY_NAME "Info-ZIP"
41#endif
42
43/* these are obsolete but remain for backward compatibility: */
44#if (defined(OS2) || defined(__OS2__))
45#  define D2_MAJORVER    UZ_MAJORVER    /* DLL for OS/2 */
46#  define D2_MINORVER    UZ_MINORVER
47#  define D2_PATCHLEVEL  UZ_PATCHLEVEL
48#endif
49
50#define DW_MAJORVER    UZ_MAJORVER    /* DLL for MS Windows */
51#define DW_MINORVER    UZ_MINORVER
52#define DW_PATCHLEVEL  UZ_PATCHLEVEL
53
54#define WIN_VERSION_DATE  UZ_VERSION_DATE
55
56#define UNZ_DLL_VERSION   UZ_VER_STRING
57
58#endif /* !__unzvers_h */
59