home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / bts314b4 / version.h < prev    next >
C/C++ Source or Header  |  1994-09-17  |  1KB  |  58 lines

  1. #ifndef H_VERSION
  2. #define H_VERSION
  3.  
  4. /*
  5.  * version.h
  6.  *
  7.  * Program version...
  8.  * (moved from xfer.h)
  9.  *
  10.  * I've put it in its own file to avoid having to recompile everything
  11.  * when changing the version name.
  12.  */
  13.  
  14. /*
  15.  * Editable bits
  16.  */
  17.  
  18. #define BINK_MAJVERSION        3                    /* Major Update */
  19. #define BINK_MINVERSION        14                    /* Minor Update */
  20. #define BINK_RELEASE        "b3"                    /* Bugfix Update */
  21.  
  22. #if 0
  23. #define BINK_DEBUGVERSION    "beta-4"               /* Beta-Test version */
  24. #else
  25. #define BINK_DEBUGVERSION    "beta-4"            /* Alpha-Test version */
  26. #endif
  27.  
  28. #define _MAILER_NAME         "BinkleyTerm-ST"    /* Program name */
  29. #define _MAILER_VER         "3.14-beta4"                  /* version in ascii format */
  30. #define _MAILER_SHORTNAME    "Bink-ST"            /* Short name of program */
  31.  
  32.  
  33. /* 
  34.  * Work out what kind of compiler we are using
  35.  */
  36.  
  37. #if defined(__PUREC__)
  38. #define COMPILER " PureC "
  39. #elif defined(__TURBOC__)
  40. #define COMPILER " TurboC "
  41. #else                        
  42. #define COMPILER " Lattice "
  43. #endif
  44.  
  45. /*
  46.  * Make up the Mailer serial number
  47. */
  48.  
  49. #ifdef DEBUG
  50. #define _MAILER_SER BINK_RELEASE "<" BINK_DEBUGVERSION ",Debug," COMPILER ">"
  51. #else
  52. #define _MAILER_SER BINK_RELEASE "<" BINK_DEBUGVERSION ">"      /* "/" COMPILER */
  53. #endif
  54.  
  55.  
  56. #endif     /* H_VERSION */
  57.  
  58.