home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap14 / color.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-07  |  506 b   |  21 lines

  1. /* color.h -- defines the color attributes  */
  2.    /* foreground colors */
  3. #define  BLACK   0x0 
  4. #define  BLUE    0x1 
  5. #define  GREEN   0x2 
  6. #define  RED     0x4 
  7. #define  CYAN    0x3 
  8. #define  MAGENTA 0x5 
  9. #define  YELLOW  0x6 
  10. #define  WHITE   0x7 
  11.    /* background colors */
  12. #define  BG_BLACK   0x00 
  13. #define  BG_BLUE    0x10 
  14. #define  BG_GREEN   0x20 
  15. #define  BG_RED     0x40 
  16. #define  BG_CYAN    0x30 
  17. #define  BG_MAGENTA 0x50 
  18. #define  BG_YELLOW  0x60 
  19. #define  BG_WHITE   0x70 
  20.  
  21.