home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip52.zip / version.h < prev    next >
C/C++ Source or Header  |  1996-04-29  |  1KB  |  42 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. /* #define BETA */
  12.  
  13. #ifdef BETA
  14. #  define BETALEVEL         "x BETA"
  15. #  define VERSION_DATE      "27 Apr 96"         /* internal beta version */
  16. #  define WIN_VERSION_DATE  "27 Apr 96"
  17. #else
  18. #  define BETALEVEL         ""
  19. #  define VERSION_DATE      "30 April 1996"     /* official release version */
  20. #  define WIN_VERSION_DATE  VERSION_DATE
  21. #  define RELEASE
  22. #endif
  23.  
  24. #define UZ_MAJORVER  5   /* UnZip */
  25. #define UZ_MINORVER  2
  26.  
  27. #define ZI_MAJORVER  2   /* ZipInfo */
  28. #define ZI_MINORVER  1
  29.  
  30. #define D2_MAJORVER  1   /* DLL for OS/2 */  /* prob. should link to UZ ver */
  31. #define D2_MINORVER  0
  32.  
  33. #define DW_MAJORVER  0   /* old DLL For Win16 */
  34. #define DW_MINORVER  1
  35.  
  36. #define WIZUZ_MAJORVER 3 /* WizUnZip */
  37. #define WIZUZ_MINORVER 0
  38.  
  39. #define PATCHLEVEL   0
  40.  
  41. #endif /* !__version_h */
  42.