comparison src/proto/screen.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 e13f8073c9f9
children 63dc856bd13d
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* screen.c */ 1 /* screen.c */
2 void redraw_later __ARGS((int type)); 2 void redraw_later(int type);
3 void redraw_win_later __ARGS((win_T *wp, int type)); 3 void redraw_win_later(win_T *wp, int type);
4 void redraw_later_clear __ARGS((void)); 4 void redraw_later_clear(void);
5 void redraw_all_later __ARGS((int type)); 5 void redraw_all_later(int type);
6 void redraw_curbuf_later __ARGS((int type)); 6 void redraw_curbuf_later(int type);
7 void redraw_buf_later __ARGS((buf_T *buf, int type)); 7 void redraw_buf_later(buf_T *buf, int type);
8 int redraw_asap __ARGS((int type)); 8 int redraw_asap(int type);
9 void redrawWinline __ARGS((linenr_T lnum, int invalid)); 9 void redrawWinline(linenr_T lnum, int invalid);
10 void update_curbuf __ARGS((int type)); 10 void update_curbuf(int type);
11 void update_screen __ARGS((int type)); 11 void update_screen(int type);
12 int conceal_cursor_line __ARGS((win_T *wp)); 12 int conceal_cursor_line(win_T *wp);
13 void conceal_check_cursur_line __ARGS((void)); 13 void conceal_check_cursur_line(void);
14 void update_single_line __ARGS((win_T *wp, linenr_T lnum)); 14 void update_single_line(win_T *wp, linenr_T lnum);
15 void update_debug_sign __ARGS((buf_T *buf, linenr_T lnum)); 15 void update_debug_sign(buf_T *buf, linenr_T lnum);
16 void updateWindow __ARGS((win_T *wp)); 16 void updateWindow(win_T *wp);
17 void rl_mirror __ARGS((char_u *str)); 17 void rl_mirror(char_u *str);
18 void status_redraw_all __ARGS((void)); 18 void status_redraw_all(void);
19 void status_redraw_curbuf __ARGS((void)); 19 void status_redraw_curbuf(void);
20 void redraw_statuslines __ARGS((void)); 20 void redraw_statuslines(void);
21 void win_redraw_last_status __ARGS((frame_T *frp)); 21 void win_redraw_last_status(frame_T *frp);
22 void win_redr_status_matches __ARGS((expand_T *xp, int num_matches, char_u **matches, int match, int showtail)); 22 void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail);
23 void win_redr_status __ARGS((win_T *wp)); 23 void win_redr_status(win_T *wp);
24 int stl_connected __ARGS((win_T *wp)); 24 int stl_connected(win_T *wp);
25 int get_keymap_str __ARGS((win_T *wp, char_u *buf, int len)); 25 int get_keymap_str(win_T *wp, char_u *buf, int len);
26 void screen_putchar __ARGS((int c, int row, int col, int attr)); 26 void screen_putchar(int c, int row, int col, int attr);
27 void screen_getbytes __ARGS((int row, int col, char_u *bytes, int *attrp)); 27 void screen_getbytes(int row, int col, char_u *bytes, int *attrp);
28 void screen_puts __ARGS((char_u *text, int row, int col, int attr)); 28 void screen_puts(char_u *text, int row, int col, int attr);
29 void screen_puts_len __ARGS((char_u *text, int textlen, int row, int col, int attr)); 29 void screen_puts_len(char_u *text, int textlen, int row, int col, int attr);
30 void screen_stop_highlight __ARGS((void)); 30 void screen_stop_highlight(void);
31 void reset_cterm_colors __ARGS((void)); 31 void reset_cterm_colors(void);
32 void screen_draw_rectangle __ARGS((int row, int col, int height, int width, int invert)); 32 void screen_draw_rectangle(int row, int col, int height, int width, int invert);
33 void screen_fill __ARGS((int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr)); 33 void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr);
34 void check_for_delay __ARGS((int check_msg_scroll)); 34 void check_for_delay(int check_msg_scroll);
35 int screen_valid __ARGS((int doclear)); 35 int screen_valid(int doclear);
36 void screenalloc __ARGS((int doclear)); 36 void screenalloc(int doclear);
37 void free_screenlines __ARGS((void)); 37 void free_screenlines(void);
38 void screenclear __ARGS((void)); 38 void screenclear(void);
39 int can_clear __ARGS((char_u *p)); 39 int can_clear(char_u *p);
40 void screen_start __ARGS((void)); 40 void screen_start(void);
41 void windgoto __ARGS((int row, int col)); 41 void windgoto(int row, int col);
42 void setcursor __ARGS((void)); 42 void setcursor(void);
43 int win_ins_lines __ARGS((win_T *wp, int row, int line_count, int invalid, int mayclear)); 43 int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
44 int win_del_lines __ARGS((win_T *wp, int row, int line_count, int invalid, int mayclear)); 44 int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
45 int screen_ins_lines __ARGS((int off, int row, int line_count, int end, win_T *wp)); 45 int screen_ins_lines(int off, int row, int line_count, int end, win_T *wp);
46 int screen_del_lines __ARGS((int off, int row, int line_count, int end, int force, win_T *wp)); 46 int screen_del_lines(int off, int row, int line_count, int end, int force, win_T *wp);
47 int showmode __ARGS((void)); 47 int showmode(void);
48 void unshowmode __ARGS((int force)); 48 void unshowmode(int force);
49 void get_trans_bufname __ARGS((buf_T *buf)); 49 void get_trans_bufname(buf_T *buf);
50 int redrawing __ARGS((void)); 50 int redrawing(void);
51 int messaging __ARGS((void)); 51 int messaging(void);
52 void showruler __ARGS((int always)); 52 void showruler(int always);
53 int number_width __ARGS((win_T *wp)); 53 int number_width(win_T *wp);
54 int screen_screencol __ARGS((void)); 54 int screen_screencol(void);
55 int screen_screenrow __ARGS((void)); 55 int screen_screenrow(void);
56 /* vim: set ft=c : */ 56 /* vim: set ft=c : */