fbcon-mfb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  FBcon low-level driver for Monochrome (mfb)
  3.  */
  4. #ifndef _VIDEO_FBCON_MFB_H
  5. #define _VIDEO_FBCON_MFB_H
  6. #include <linux/config.h>
  7. #ifdef MODULE
  8. #if defined(CONFIG_FBCON_MFB) || defined(CONFIG_FBCON_MFB_MODULE)
  9. #define FBCON_HAS_MFB
  10. #endif
  11. #else
  12. #if defined(CONFIG_FBCON_MFB)
  13. #define FBCON_HAS_MFB
  14. #endif
  15. #endif
  16. extern struct display_switch fbcon_mfb;
  17. extern void fbcon_mfb_setup(struct display *p);
  18. extern void fbcon_mfb_bmove(struct display *p, int sy, int sx, int dy, int dx,
  19.     int height, int width);
  20. extern void fbcon_mfb_clear(struct vc_data *conp, struct display *p, int sy,
  21.     int sx, int height, int width);
  22. extern void fbcon_mfb_putc(struct vc_data *conp, struct display *p, int c,
  23.    int yy, int xx);
  24. extern void fbcon_mfb_putcs(struct vc_data *conp, struct display *p,
  25.     const unsigned short *s, int count, int yy, int xx);
  26. extern void fbcon_mfb_revc(struct display *p, int xx, int yy);
  27. #endif /* _VIDEO_FBCON_MFB_H */