home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / h / version.h < prev   
Encoding:
C/C++ Source or Header  |  1992-02-10  |  807 b   |  41 lines

  1.  
  2. /*
  3.  * version.h -- version identification
  4.  */
  5.  
  6. /*
  7.  * Version number to insure format of data base matches version of iconc
  8.  *  and rtt.
  9.  */
  10.  
  11. #define DVersion "8.4.002"
  12.  
  13. #if COMPILER
  14. /*
  15.  * &version
  16.  */
  17. #define Version    "Icon Compiler Version 8.5. February 9, 1992."
  18. #else                    /* COMPILER */
  19. /*
  20.  *  &version
  21.  */
  22. #define Version    "Icon Interpreter Version 8.5.  February 9, 1992"
  23.  
  24. /*
  25.  * Version numbers to be sure ucode is compatible with the linker
  26.  * and icode is compatible with the run-time system.
  27.  */
  28.  
  29. #define UVersion "U8.4.001"
  30. #ifdef IconCalling
  31. #define IVersion "I8.4.001+C"
  32. #else                    /* IconCalling */
  33. #define IVersion "I8.4.001"
  34. #endif                    /* IconCalling */
  35. #endif                    /* COMPILER */
  36.  
  37. /*
  38.  * Version number for event monitoring.
  39.  */
  40. #define Eversion "8.4.000"
  41.