version.hhh 711 B

123456789101112131415161718192021222324252627
  1. /* version.h Copyright (C) 1990-1997 Codemist Ltd */
  2. /* Signature: 406535a6 04-Jun-1997 */
  3. #ifndef header_version_h
  4. #define header_version_h 1
  5. /*
  6. * VERSION is used to control the version number displayed when CSL/CCL
  7. * is started up in verbose mode (command line option -v). Version numbers
  8. * are also recorded in image files.
  9. */
  10. #define VERSION "4.00"
  11. /*
  12. * The next two lines are processed by filesign.c on the basis of
  13. * of a private file register.key and a user name to give 64 bytes
  14. * of registration information, coded up as two strings of hex digits.
  15. */
  16. #define REG1 "\c"
  17. #define REG2 "\d"
  18. #endif /* header_version_h */
  19. /* end of version.h */