term.pro
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* term.c */
  2. int set_termname __ARGS((char_u *term));
  3. void set_mouse_termcode __ARGS((int n, char_u *s));
  4. void del_mouse_termcode __ARGS((int n));
  5. void getlinecol __ARGS((void));
  6. int add_termcap_entry __ARGS((char_u *name, int force));
  7. int term_is_gui __ARGS((char_u *name));
  8. char_u *tltoa __ARGS((unsigned long i));
  9. void termcapinit __ARGS((char_u *name));
  10. void out_flush __ARGS((void));
  11. void out_trash __ARGS((void));
  12. void out_char __ARGS((unsigned c));
  13. void out_str_nf __ARGS((char_u *s));
  14. void out_str __ARGS((char_u *s));
  15. void term_windgoto __ARGS((int row, int col));
  16. void term_cursor_right __ARGS((int i));
  17. void term_append_lines __ARGS((int line_count));
  18. void term_delete_lines __ARGS((int line_count));
  19. void term_fg_color __ARGS((int n));
  20. void term_bg_color __ARGS((int n));
  21. void ttest __ARGS((int pairs));
  22. void add_long_to_buf __ARGS((long_u val, char_u *dst));
  23. int get_long_from_buf __ARGS((char_u *buf, long_u *val));
  24. void check_winsize __ARGS((void));
  25. void set_winsize __ARGS((int width, int height, int mustset));
  26. void settmode __ARGS((int tmode));
  27. void starttermcap __ARGS((void));
  28. void stoptermcap __ARGS((void));
  29. int swapping_screen __ARGS((void));
  30. void setmouse __ARGS((void));
  31. int mouse_has __ARGS((int c));
  32. int mouse_model_popup __ARGS((void));
  33. void scroll_start __ARGS((void));
  34. void cursor_on __ARGS((void));
  35. void cursor_off __ARGS((void));
  36. void scroll_region_set __ARGS((WIN *wp, int off));
  37. void scroll_region_reset __ARGS((void));
  38. void clear_termcodes __ARGS((void));
  39. void add_termcode __ARGS((char_u *name, char_u *string));
  40. char_u *find_termcode __ARGS((char_u *name));
  41. char_u *get_termcode __ARGS((int i));
  42. void del_termcode __ARGS((char_u *name));
  43. int check_termcode __ARGS((int max_offset));
  44. char_u *replace_termcodes __ARGS((char_u *from, char_u **bufp, int from_part, int do_lt));
  45. void show_termcodes __ARGS((void));
  46. int show_one_termcode __ARGS((char_u *name, char_u *code, int printit));
  47. void update_tcap __ARGS((int attr));