home *** CD-ROM | disk | FTP | other *** search
/ Trixter's Scene Collection / trixter.zip / trixter / Demos / MECH2.ZIP / COLOR.DOC < prev    next >
Text File  |  1995-05-22  |  457b  |  32 lines

  1. //#define TCC
  2. //#define GCC
  3. #define WCC
  4.  
  5. #ifdef WCC
  6. #define ext_inl inline
  7. #endif
  8. #ifdef GCC
  9. #define ext_inl extern inline
  10. #endif
  11.  
  12.  
  13. #include "types.h"
  14. #include "macro.h"
  15.  
  16. // colors
  17.  
  18. #define C_GREY 0
  19. #define C_RED 160
  20. #define C_GREEN 192
  21. #define C_BLUE 128
  22. #define C_YELLOW 96
  23. #define C_CYAN 32
  24. #define C_MAG 64
  25. #define C_BROWN 224
  26.  
  27. //  a bright version
  28. #define BRIGHT(C) (C+31)
  29.  
  30. //  a medium version
  31. #define MEDIUM(C) (C+16)
  32.