home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Tickle-4.0.sit.hqx / Tickle-4.0 / src / version.h < prev    next >
Text File  |  1993-11-18  |  1KB  |  43 lines

  1. /*
  2. ** This source code was written by Tim Endres
  3. ** Email: time@ice.com.
  4. ** USMail: 8840 Main Street, Whitmore Lake, MI  48189
  5. **
  6. ** Some portions of this application utilize sources
  7. ** that are copyrighted by ICE Engineering, Inc., and
  8. ** ICE Engineering retains all rights to those sources.
  9. **
  10. ** Neither ICE Engineering, Inc., nor Tim Endres, 
  11. ** warrants this source code for any reason, and neither
  12. ** party assumes any responsbility for the use of these
  13. ** sources, libraries, or applications. The user of these
  14. ** sources and binaries assumes all responsbilities for
  15. ** any resulting consequences.
  16. */
  17.  
  18. #ifdef ALLOCATE_GLOBALS
  19.  
  20. char SHORT_VERSION_STR[]="4.0v1";
  21. char VERSION_STR[]="Release: 4.0v1";
  22. char VERSION_DATE[]="Date: November, 1993";
  23.  
  24. #ifdef TCLAPPL
  25.  
  26. char INFO_FORMAT_STRING[]="tickle - Release: 4.0v1. By Tim Endres.";
  27.  
  28. #else
  29.  
  30. char INFO_FORMAT_STRING[]="tclEngine - Release: 4.0v1. By Tim Endres.";
  31.  
  32. #endif
  33.  
  34. #else
  35.  
  36. extern char SHORT_VERSION_STR[];
  37. extern char VERSION_STR[];
  38. extern char VERSION_DATE[];
  39.  
  40. extern char INFO_FORMAT_STRING[];
  41.  
  42. #endif
  43.