selection.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * selection.h
  3.  *
  4.  * Interface between console.c, tty_io.c, vt.c, vc_screen.c and selection.c
  5.  */
  6. #ifndef _LINUX_SELECTION_H_
  7. #define _LINUX_SELECTION_H_
  8. #include <linux/tiocl.h>
  9. #include <linux/vt_buffer.h>
  10. extern struct vc_data *sel_cons;
  11. extern void clear_selection(void);
  12. extern int set_selection(const struct tiocl_selection __user *sel, struct tty_struct *tty);
  13. extern int paste_selection(struct tty_struct *tty);
  14. extern int sel_loadlut(char __user *p);
  15. extern int mouse_reporting(void);
  16. extern void mouse_report(struct tty_struct * tty, int butt, int mrx, int mry);
  17. extern int console_blanked;
  18. extern unsigned char color_table[];
  19. extern int default_red[];
  20. extern int default_grn[];
  21. extern int default_blu[];
  22. extern unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed);
  23. extern u16 screen_glyph(struct vc_data *vc, int offset);
  24. extern void complement_pos(struct vc_data *vc, int offset);
  25. extern void invert_screen(struct vc_data *vc, int offset, int count, int shift);
  26. extern void getconsxy(struct vc_data *vc, unsigned char *p);
  27. extern void putconsxy(struct vc_data *vc, unsigned char *p);
  28. extern u16 vcs_scr_readw(struct vc_data *vc, const u16 *org);
  29. extern void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org);
  30. #endif