gui_config.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:0k
源码类别:

数据库系统

开发平台:

C/C++

  1. #ifndef __GUI_CONFIG_H_
  2. #define __GUI_CONFIG_H_
  3. /**********平台**************/
  4. #define ST             (0)
  5. #define PC (1)
  6. #define cxnt (2)
  7. #define Ali     (3)
  8. #define GUI_PLATFORM              Ali
  9. /*********图片格式***********/
  10. #define GUI_COLOR_CLUT     (0)
  11. #define GUI_COLOR_1555 (1)
  12. #define GUI_COLOR_565 (2)
  13. #define GUI_COLOR GUI_COLOR_CLUT
  14. /********RGB定义*************/
  15. #define RGB(R,G,B)  ((R>>3)<<10|(G>>3)<<5|(B>>3)|0x8000)
  16. #endif