home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / isam / include / attrdefs.h next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  537 b   |  20 lines

  1. // ATTRDEFS.H - Default Attribute Definitions
  2.  
  3. #ifndef ATTRDEFS_H
  4. #define ATTRDEFS_H
  5.  
  6. #define attrINPUT  LIGHTGREY
  7. #define attrLEGEND WHITE
  8. #define attrBMNORM (BLUE << 4) | YELLOW
  9. #define attrBMHIGH (CYAN << 4) | BLUE
  10. #define attrBMHOTK (BLUE << 4) | WHITE
  11. #define attrMNORM  (MAGENTA << 4) | WHITE
  12. #define attrMHIGH  (CYAN << 4)
  13. #define attrBNORM  (MAGENTA << 4) | WHITE
  14. #define attrBHIGH  (CYAN << 4)
  15. #define attrTITLE  (BLUE << 4) | WHITE
  16. #define attrPRCOL  (BLUE << 4) | WHITE
  17. #define attrSCREEN LIGHTGREY
  18.  
  19. #endif
  20.