comparison src/proto/term.pro @ 7668:21b0a39d13ed v7.4.1133

commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 19 13:22:12 2016 +0100 patch 7.4.1133 Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jan 2016 13:30:06 +0100
parents a89cff862dda
children c83e2c1e7f2b
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* term.c */ 1 /* term.c */
2 int set_termname __ARGS((char_u *term)); 2 int set_termname(char_u *term);
3 void set_mouse_termcode __ARGS((int n, char_u *s)); 3 void set_mouse_termcode(int n, char_u *s);
4 void del_mouse_termcode __ARGS((int n)); 4 void del_mouse_termcode(int n);
5 void getlinecol __ARGS((long *cp, long *rp)); 5 void getlinecol(long *cp, long *rp);
6 int add_termcap_entry __ARGS((char_u *name, int force)); 6 int add_termcap_entry(char_u *name, int force);
7 int term_is_8bit __ARGS((char_u *name)); 7 int term_is_8bit(char_u *name);
8 int term_is_gui __ARGS((char_u *name)); 8 int term_is_gui(char_u *name);
9 char_u *tltoa __ARGS((unsigned long i)); 9 char_u *tltoa(unsigned long i);
10 void termcapinit __ARGS((char_u *name)); 10 void termcapinit(char_u *name);
11 void out_flush __ARGS((void)); 11 void out_flush(void);
12 void out_flush_check __ARGS((void)); 12 void out_flush_check(void);
13 void out_trash __ARGS((void)); 13 void out_trash(void);
14 void out_char __ARGS((unsigned c)); 14 void out_char(unsigned c);
15 void out_str_nf __ARGS((char_u *s)); 15 void out_str_nf(char_u *s);
16 void out_str __ARGS((char_u *s)); 16 void out_str(char_u *s);
17 void term_windgoto __ARGS((int row, int col)); 17 void term_windgoto(int row, int col);
18 void term_cursor_right __ARGS((int i)); 18 void term_cursor_right(int i);
19 void term_append_lines __ARGS((int line_count)); 19 void term_append_lines(int line_count);
20 void term_delete_lines __ARGS((int line_count)); 20 void term_delete_lines(int line_count);
21 void term_set_winpos __ARGS((int x, int y)); 21 void term_set_winpos(int x, int y);
22 void term_set_winsize __ARGS((int width, int height)); 22 void term_set_winsize(int width, int height);
23 void term_fg_color __ARGS((int n)); 23 void term_fg_color(int n);
24 void term_bg_color __ARGS((int n)); 24 void term_bg_color(int n);
25 void term_settitle __ARGS((char_u *title)); 25 void term_settitle(char_u *title);
26 void ttest __ARGS((int pairs)); 26 void ttest(int pairs);
27 void add_long_to_buf __ARGS((long_u val, char_u *dst)); 27 void add_long_to_buf(long_u val, char_u *dst);
28 void check_shellsize __ARGS((void)); 28 void check_shellsize(void);
29 void limit_screen_size __ARGS((void)); 29 void limit_screen_size(void);
30 void win_new_shellsize __ARGS((void)); 30 void win_new_shellsize(void);
31 void shell_resized __ARGS((void)); 31 void shell_resized(void);
32 void shell_resized_check __ARGS((void)); 32 void shell_resized_check(void);
33 void set_shellsize __ARGS((int width, int height, int mustset)); 33 void set_shellsize(int width, int height, int mustset);
34 void settmode __ARGS((int tmode)); 34 void settmode(int tmode);
35 void starttermcap __ARGS((void)); 35 void starttermcap(void);
36 void stoptermcap __ARGS((void)); 36 void stoptermcap(void);
37 void may_req_termresponse __ARGS((void)); 37 void may_req_termresponse(void);
38 void may_req_ambiguous_char_width __ARGS((void)); 38 void may_req_ambiguous_char_width(void);
39 void may_req_bg_color __ARGS((void)); 39 void may_req_bg_color(void);
40 int swapping_screen __ARGS((void)); 40 int swapping_screen(void);
41 void setmouse __ARGS((void)); 41 void setmouse(void);
42 int mouse_has __ARGS((int c)); 42 int mouse_has(int c);
43 int mouse_model_popup __ARGS((void)); 43 int mouse_model_popup(void);
44 void scroll_start __ARGS((void)); 44 void scroll_start(void);
45 void cursor_on __ARGS((void)); 45 void cursor_on(void);
46 void cursor_off __ARGS((void)); 46 void cursor_off(void);
47 void term_cursor_shape __ARGS((void)); 47 void term_cursor_shape(void);
48 void scroll_region_set __ARGS((win_T *wp, int off)); 48 void scroll_region_set(win_T *wp, int off);
49 void scroll_region_reset __ARGS((void)); 49 void scroll_region_reset(void);
50 void clear_termcodes __ARGS((void)); 50 void clear_termcodes(void);
51 void add_termcode __ARGS((char_u *name, char_u *string, int flags)); 51 void add_termcode(char_u *name, char_u *string, int flags);
52 char_u *find_termcode __ARGS((char_u *name)); 52 char_u *find_termcode(char_u *name);
53 char_u *get_termcode __ARGS((int i)); 53 char_u *get_termcode(int i);
54 void del_termcode __ARGS((char_u *name)); 54 void del_termcode(char_u *name);
55 void set_mouse_topline __ARGS((win_T *wp)); 55 void set_mouse_topline(win_T *wp);
56 int check_termcode __ARGS((int max_offset, char_u *buf, int bufsize, int *buflen)); 56 int check_termcode(int max_offset, char_u *buf, int bufsize, int *buflen);
57 char_u *replace_termcodes __ARGS((char_u *from, char_u **bufp, int from_part, int do_lt, int special)); 57 char_u *replace_termcodes(char_u *from, char_u **bufp, int from_part, int do_lt, int special);
58 int find_term_bykeys __ARGS((char_u *src)); 58 int find_term_bykeys(char_u *src);
59 void show_termcodes __ARGS((void)); 59 void show_termcodes(void);
60 int show_one_termcode __ARGS((char_u *name, char_u *code, int printit)); 60 int show_one_termcode(char_u *name, char_u *code, int printit);
61 char_u *translate_mapping __ARGS((char_u *str, int expmap)); 61 char_u *translate_mapping(char_u *str, int expmap);
62 void update_tcap __ARGS((int attr)); 62 void update_tcap(int attr);
63 /* vim: set ft=c : */ 63 /* vim: set ft=c : */