libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / bin / unzip / unzvers.h
blob1c5a02d71c5057f40df75e42e9d3c1ec626fcdb3
1 /*
2 Copyright (c) 1990-2002 Info-ZIP. All rights reserved.
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.
13 #ifndef __unzvers_h /* don't include more than once */
14 #define __unzvers_h
16 #ifdef BETA
17 # undef BETA /* undefine BETA for public releases */
18 #endif
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
29 #define UZ_MAJORVER 5 /* UnZip */
30 #define UZ_MINORVER 5
32 #define ZI_MAJORVER 2 /* ZipInfo */
33 #define ZI_MINORVER 4
35 #define UZ_PATCHLEVEL 0
37 #define UZ_VER_STRING "5.5" /* keep in sync with Version numbers! */
39 #ifndef IZ_COMPANY_NAME /* might be already defined... */
40 # define IZ_COMPANY_NAME "Info-ZIP"
41 #endif
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
50 #define DW_MAJORVER UZ_MAJORVER /* DLL for MS Windows */
51 #define DW_MINORVER UZ_MINORVER
52 #define DW_PATCHLEVEL UZ_PATCHLEVEL
54 #define WIN_VERSION_DATE UZ_VERSION_DATE
56 #define UNZ_DLL_VERSION UZ_VER_STRING
58 #endif /* !__unzvers_h */