home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / other / cled122s / source / define.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-14  |  737 b   |  19 lines

  1. #define TRUE 1
  2. #define FALSE 0
  3.  
  4. #define GNU                   /* Define this for the GNU compiler */
  5. /*#define MWC*/              /* Define this for the Mark Williams compiler */
  6.  
  7. #ifdef GNU
  8. #  define ONE_LONG              /* Use one long for time in evnt_multi */
  9. #  define OTYPE void **         /* Type of object pointer for rsrc functions */
  10. #endif
  11.  
  12. /* Set up some stuff for the MWC compiler */
  13. #ifdef MWC
  14. #  define NO_GRECT              /* Dont use GRECT structs for rectangle ops. */
  15. #  define NO_ISXDIGIT           /* Dont have an isxdigit function */
  16. #  define TWO_INTS              /* Use two ints for time in evnt_multi */
  17. #  define OTYPE OBJECT **       /* Type of object pointer for rsrc functions */
  18. #endif
  19.