home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip540.zip / version.h < prev    next >
C/C++ Source or Header  |  1998-11-26  |  1KB  |  45 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. #  undef BETA           /* define BETA for internal beta releases */
  13. #endif
  14.  
  15. #ifdef BETA
  16. #  define BETALEVEL         "d BETA"
  17. #  define VERSION_DATE      "27 November 98"    /* internal beta version */
  18. #else
  19. #  define BETALEVEL         ""
  20. #  define VERSION_DATE      "28 November 1998"  /* official release version */
  21. #  define RELEASE
  22. #endif
  23.  
  24. #define UZ_MAJORVER    5   /* UnZip */
  25. #define UZ_MINORVER    4
  26.  
  27. #define ZI_MAJORVER    2   /* ZipInfo */
  28. #define ZI_MINORVER    3
  29.  
  30. #define PATCHLEVEL     0
  31.  
  32.  
  33. /* these are obsolete but remain for backward compatibility: */
  34. #define D2_MAJORVER    UZ_MAJORVER   /* DLL for OS/2 */
  35. #define D2_MINORVER    UZ_MINORVER
  36. #define D2_PATCHLEVEL  PATCHLEVEL
  37.  
  38. #define DW_MAJORVER    UZ_MAJORVER   /* DLL for MS Windows */
  39. #define DW_MINORVER    UZ_MINORVER
  40. #define DW_PATCHLEVEL  PATCHLEVEL
  41.  
  42. #define WIN_VERSION_DATE  VERSION_DATE
  43.  
  44. #endif /* !__version_h */
  45.