home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip531.zip / version.h < prev    next >
C/C++ Source or Header  |  1997-05-31  |  1KB  |  41 lines

  1. /*
  2.    version.h (for UnZip) by Info-ZIP.
  3.  
  4.    This header file is not copyrighted and may be distributed without
  5.    restriction.  (That's a little geek humor, heh heh.)
  6.  */
  7.  
  8. #ifndef __version_h   /* don't include more than once */
  9. #define __version_h
  10.  
  11. #ifdef BETA
  12. #  define BETALEVEL         "d BETA"
  13. #  define VERSION_DATE      "31 May 97"         /* internal beta version */
  14. #else
  15. #  define BETALEVEL         ""
  16. #  define VERSION_DATE      "31 May 1997"     /* official release version */
  17. #  define RELEASE
  18. #endif
  19.  
  20. #define UZ_MAJORVER    5   /* UnZip */
  21. #define UZ_MINORVER    3
  22.  
  23. #define ZI_MAJORVER    2   /* ZipInfo */
  24. #define ZI_MINORVER    2
  25.  
  26. #define PATCHLEVEL     1
  27.  
  28.  
  29. /* these are obsolete but remain for backward compatibility: */
  30. #define D2_MAJORVER    UZ_MAJORVER   /* DLL for OS/2 */
  31. #define D2_MINORVER    UZ_MINORVER
  32. #define D2_PATCHLEVEL  PATCHLEVEL
  33.  
  34. #define DW_MAJORVER    UZ_MAJORVER   /* DLL for MS Windows */
  35. #define DW_MINORVER    UZ_MINORVER
  36. #define DW_PATCHLEVEL  PATCHLEVEL
  37.  
  38. #define WIN_VERSION_DATE  VERSION_DATE
  39.  
  40. #endif /* !__version_h */
  41.