RGB.h
上传用户:zm80169
上传日期:2007-01-15
资源大小:6k
文件大小:0k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. #ifndef _RGB_H_
  2. #define _RGB_H_
  3. #define RGB_BLACK RGB(0x00, 0x00, 0x00)
  4. #define RGB_WHITE RGB(0xFF, 0xFF, 0xFF)
  5. #define RGB_RED RGB(255,0,0)
  6. #define RGB_GREEN RGB(0,255,0)
  7. #define RGB_YELLOW RGB(255,255,0)
  8. #define RGB_BLUE RGB(0,0,255)
  9. #define RGB_GRAY RGB(128,128,128)
  10. #define RGB_GRAYTEXT ::GetSysColor(COLOR_GRAYTEXT)
  11. #define RGB_BTNFACE ::GetSysColor(COLOR_BTNFACE)
  12. #endif