home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / AECUR101 / AZTEC.H < prev    next >
C/C++ Source or Header  |  1990-03-10  |  542b  |  25 lines

  1. /*------------------------------------------------------------
  2.  * 
  3.  * compiler.h
  4.  * 
  5.  * define symbols for the compiler and memory model being used
  6.  * 
  7.  *----------------------------------------------------------*/
  8.  
  9. #ifndef __COMPILER__
  10.  
  11. #define __COMPILER__
  12.  
  13. /* exactly 1 of these should be defined to 1 */
  14.  
  15. #define     AZTEC       1
  16. #define     MSC50       0
  17. #define     TURBOC      0
  18.  
  19. /* these symbols select the memory model used */
  20.  
  21. #define     _LARGEDATA  1
  22. #define     _LARGECODE  1
  23.  
  24. #endif  /* __COMPILER__ */
  25.