7
|
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((long *cp, long *rp));
|
|
6 int add_termcap_entry __ARGS((char_u *name, int force));
|
|
7 int term_is_8bit __ARGS((char_u *name));
|
|
8 int term_is_gui __ARGS((char_u *name));
|
|
9 char_u *tltoa __ARGS((unsigned long i));
|
|
10 void termcapinit __ARGS((char_u *name));
|
|
11 void out_flush __ARGS((void));
|
|
12 void out_flush_check __ARGS((void));
|
|
13 void out_trash __ARGS((void));
|
|
14 void out_char __ARGS((unsigned c));
|
|
15 void out_str_nf __ARGS((char_u *s));
|
|
16 void out_str __ARGS((char_u *s));
|
|
17 void term_windgoto __ARGS((int row, int col));
|
|
18 void term_cursor_right __ARGS((int i));
|
|
19 void term_append_lines __ARGS((int line_count));
|
|
20 void term_delete_lines __ARGS((int line_count));
|
|
21 void term_set_winpos __ARGS((int x, int y));
|
|
22 void term_set_winsize __ARGS((int width, int height));
|
|
23 void term_fg_color __ARGS((int n));
|
|
24 void term_bg_color __ARGS((int n));
|
|
25 void term_settitle __ARGS((char_u *title));
|
|
26 void ttest __ARGS((int pairs));
|
|
27 void add_long_to_buf __ARGS((long_u val, char_u *dst));
|
|
28 void check_shellsize __ARGS((void));
|
|
29 void win_new_shellsize __ARGS((void));
|
|
30 void shell_resized __ARGS((void));
|
|
31 void shell_resized_check __ARGS((void));
|
|
32 void set_shellsize __ARGS((int width, int height, int mustset));
|
|
33 void settmode __ARGS((int tmode));
|
|
34 void starttermcap __ARGS((void));
|
|
35 void stoptermcap __ARGS((void));
|
626
|
36 void may_req_termresponse __ARGS((void));
|
7
|
37 int swapping_screen __ARGS((void));
|
|
38 void setmouse __ARGS((void));
|
|
39 int mouse_has __ARGS((int c));
|
|
40 int mouse_model_popup __ARGS((void));
|
|
41 void scroll_start __ARGS((void));
|
|
42 void cursor_on __ARGS((void));
|
|
43 void cursor_off __ARGS((void));
|
36
|
44 void term_cursor_shape __ARGS((void));
|
7
|
45 void scroll_region_set __ARGS((win_T *wp, int off));
|
|
46 void scroll_region_reset __ARGS((void));
|
|
47 void clear_termcodes __ARGS((void));
|
190
|
48 void add_termcode __ARGS((char_u *name, char_u *string, int flags));
|
7
|
49 char_u *find_termcode __ARGS((char_u *name));
|
|
50 char_u *get_termcode __ARGS((int i));
|
|
51 void del_termcode __ARGS((char_u *name));
|
|
52 void set_mouse_topline __ARGS((win_T *wp));
|
|
53 int check_termcode __ARGS((int max_offset, char_u *buf, int buflen));
|
|
54 char_u *replace_termcodes __ARGS((char_u *from, char_u **bufp, int from_part, int do_lt));
|
|
55 int find_term_bykeys __ARGS((char_u *src));
|
|
56 void show_termcodes __ARGS((void));
|
|
57 int show_one_termcode __ARGS((char_u *name, char_u *code, int printit));
|
|
58 char_u *translate_mapping __ARGS((char_u *str, int expmap));
|
|
59 void update_tcap __ARGS((int attr));
|
|
60 /* vim: set ft=c : */
|