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