home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip511.zip / version.h < prev    next >
C/C++ Source or Header  |  1994-08-02  |  870b  |  35 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   "j"
  15. #  define UZ_VERSION  "5.11j BETA of 1 Aug 94"   /* internal beta level */
  16. #  define ZI_VERSION  "2.01j BETA of 1 Aug 94"
  17. #  define D2_VERSION  "0.0 BETA of xx Xxx 94"
  18. #else
  19. #  define BETALEVEL   ""
  20. #  define UZ_VERSION  "5.11 of 2 August 1994"   /* official release version */
  21. #  define ZI_VERSION  "2.01 of 2 August 1994"
  22. #  define D2_VERSION  "0.0 of x Xxxxxx 1994"   /* (DLL for OS/2) */
  23. #  define RELEASE
  24. #endif
  25.  
  26. #define UZ_MAJORVER  5
  27. #define UZ_MINORVER  1
  28.  
  29. #define ZI_MAJORVER  2
  30. #define ZI_MINORVER  0
  31.  
  32. #define PATCHLEVEL  1
  33.  
  34. #endif /* !__version_h */
  35.