home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / ckermit.arc / ckcsym.h < prev    next >
Text File  |  1988-02-12  |  980b  |  26 lines

  1. /*
  2.  * This file is for use with compilers that don't have the capability to #define
  3.  * symbols at compile-time (e.g. on the command line).  This file must be
  4.  * #include'd before all other ck*.h files so that the symbols #define'd here
  5.  * can be used for any subsequent conditional code.  Symbols should be #define'd
  6.  * as 1 if TRUE and 0 if FALSE.  This implies, of course, that they be tested
  7.  * with #if's, not #ifdef's and #ifndef's. 
  8.  * 
  9.  * This file is used by both C-Kermit and the Macintosh keyboard configuration
  10.  * utility.  As such, it should not contain anything which is specific to either
  11.  * program (e.g. extern's, typedef's, etc.), only the #define's necessary to
  12.  * select the proper conditional code. 
  13.  */ 
  14.  
  15. /*
  16.  * The following #define is for compilation of the Macintosh version of C-Kermit
  17.  * with the Megamax compiler. 
  18.  */
  19.  
  20. #define MEGAMAX 0
  21.  
  22. #if MEGAMAX
  23. #define MAC        /* Also #define MAC symbol for generic Macintosh code */
  24. #endif
  25.  
  26.