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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  FBcon low-level driver for Atari interleaved bitplanes (4 planes) (iplan2p4)
  3.  */
  4. #ifndef _VIDEO_FBCON_IPLAN2P4_H
  5. #define _VIDEO_FBCON_IPLAN2P4_H
  6. #include <linux/config.h>
  7. #ifdef MODULE
  8. #if defined(CONFIG_FBCON_IPLAN2P4) || defined(CONFIG_FBCON_IPLAN2P4_MODULE)
  9. #define FBCON_HAS_IPLAN2P4
  10. #endif
  11. #else
  12. #if defined(CONFIG_FBCON_IPLAN2P4)
  13. #define FBCON_HAS_IPLAN2P4
  14. #endif
  15. #endif
  16. extern struct display_switch fbcon_iplan2p4;
  17. extern void fbcon_iplan2p4_setup(struct display *p);
  18. extern void fbcon_iplan2p4_bmove(struct display *p, int sy, int sx, int dy,
  19.  int dx, int height, int width);
  20. extern void fbcon_iplan2p4_clear(struct vc_data *conp, struct display *p,
  21.  int sy, int sx, int height, int width);
  22. extern void fbcon_iplan2p4_putc(struct vc_data *conp, struct display *p, int c,
  23. int yy, int xx);
  24. extern void fbcon_iplan2p4_putcs(struct vc_data *conp, struct display *p,
  25.  const unsigned short *s, int count, int yy, int xx);
  26. extern void fbcon_iplan2p4_revc(struct display *p, int xx, int yy);
  27. #endif /* _VIDEO_FBCON_IPLAN2P4_H */