reader_mmi_dev.h
上传用户:holyzs
上传日期:2022-06-29
资源大小:2335k
文件大小:0k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. #ifndef __READER_MMI_DEV_H__
  2. #define __READER_MMI_DEV_H__ 1
  3. //API provided here are only expected to be called by reader_mmi module
  4. void reader_setpixel(screen_t screen, int x, int y, color_t color);
  5. void fill_screen(screen_t screen, color_t color);
  6. void trigger_screen_update(screen_t screen);
  7. //for bitmap bg support
  8. void fill_screen_bitmap(screen_t screen, color_t *bmpbuf);
  9. #endif