home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / utilities / checkx / sources / include / sdi_version.h < prev   
Encoding:
C/C++ Source or Header  |  2000-06-25  |  1.2 KB  |  54 lines

  1. #ifndef SDI_VERSION_H
  2. #define SDI_VERSION_H
  3.  
  4. /* Includeheader
  5.  
  6.     Name:        SDI_version
  7.     Versionstring:    $VER: SDI_version.h 1.0 (30.04.2000)
  8.     Author:        SDI
  9.     Distribution:    PD
  10.     Description:    standard version string
  11.  
  12.  1.0   30.04.00 : excluded SDI_version.h
  13. */
  14.  
  15. /*
  16.   AUTHOR    program author - default is "by Dirk ..."
  17.   DATE        programm creation date - default is automatically created
  18.   DISTRIBUTION    distribution form - default is "(PD) "
  19.   REVISION    revision number - default is "0"
  20.   VERSION    version number - default is "1"
  21. */
  22.  
  23. #ifndef AUTHOR
  24.   #define AUTHOR "by Dirk Stöcker <stoecker@amigaworld.com>"
  25. #endif
  26. #ifndef VERSION
  27.   #define VERSION "1"
  28. #endif
  29. #ifndef REVISION
  30.   #define REVISION "0"
  31. #endif
  32. #ifndef DATE
  33.   #if defined(__MAXON__) || defined(__STORM__)
  34.     #define SDI_DATE "(" __DATE2__ ")"
  35.   #elif defined(__SASC)
  36.     #define SDI_DATE __AMIGADATE__
  37.   #elif defined(__GNUC__) || defined(__VBCC__)
  38.     #define SDI_DATE "(" __DATE__ ")"
  39.   #else
  40.     #define SDI_DATE "(" __DATE__ ")"
  41.   #endif
  42. #else
  43.   #define SDI_DATE "(" DATE ")"
  44. #endif
  45.  
  46. #ifndef DISTRIBUTION
  47.   #define DISTRIBUTION "(PD) "
  48. #endif
  49. const char * version = "$VER: " NAME " " VERSION "." REVISION " "
  50. SDI_DATE " " DISTRIBUTION AUTHOR;
  51.  
  52. #endif /* SDI_VERSION_H */
  53.  
  54.