home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / graphic / csg_rt / standard.h < prev    next >
C/C++ Source or Header  |  1990-06-13  |  508b  |  31 lines

  1. /*
  2.  
  3. STANDARD.H  Custom header file that provides commonly used equates
  4.  
  5. */
  6.  
  7. typedef    int BOOLEAN;
  8. #define    TRUE        1
  9. #define    FALSE        0
  10.  
  11. #define reg        register
  12. #define    uchar        unsigned char
  13. #define ushort        unsigned short
  14. #define    uint        unsigned int
  15. #define ulong        unsigned long
  16. #define    byte        unsigned char
  17. #define    word        unsigned short
  18. #define    dword        unsigned long
  19.  
  20. #define    ARGS(a)        ()
  21.  
  22. #ifdef xxDOS
  23. #undef ARGS
  24. #define    ARGS(a)        a
  25. #endif
  26.  
  27. #ifdef OS2
  28. #undef ARGS
  29. #define    ARGS(a)        a
  30. #endif
  31.