comparison src/proto/netbeans.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 0b3be97064e5
children 6069f43cea4e
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* netbeans.c */ 1 /* netbeans.c */
2 void netbeans_parse_messages __ARGS((void)); 2 void netbeans_parse_messages(void);
3 void netbeans_read __ARGS((void)); 3 void netbeans_read(void);
4 int isNetbeansBuffer __ARGS((buf_T *bufp)); 4 int isNetbeansBuffer(buf_T *bufp);
5 int isNetbeansModified __ARGS((buf_T *bufp)); 5 int isNetbeansModified(buf_T *bufp);
6 void netbeans_end __ARGS((void)); 6 void netbeans_end(void);
7 void ex_nbclose __ARGS((exarg_T *eap)); 7 void ex_nbclose(exarg_T *eap);
8 void ex_nbkey __ARGS((exarg_T *eap)); 8 void ex_nbkey(exarg_T *eap);
9 void ex_nbstart __ARGS((exarg_T *eap)); 9 void ex_nbstart(exarg_T *eap);
10 void netbeans_beval_cb __ARGS((BalloonEval *beval, int state)); 10 void netbeans_beval_cb(BalloonEval *beval, int state);
11 int netbeans_active __ARGS((void)); 11 int netbeans_active(void);
12 int netbeans_filedesc __ARGS((void)); 12 int netbeans_filedesc(void);
13 void netbeans_gui_register __ARGS((void)); 13 void netbeans_gui_register(void);
14 void netbeans_open __ARGS((char *params, int doabort)); 14 void netbeans_open(char *params, int doabort);
15 void netbeans_send_disconnect __ARGS((void)); 15 void netbeans_send_disconnect(void);
16 void netbeans_frame_moved __ARGS((int new_x, int new_y)); 16 void netbeans_frame_moved(int new_x, int new_y);
17 void netbeans_file_activated __ARGS((buf_T *bufp)); 17 void netbeans_file_activated(buf_T *bufp);
18 void netbeans_file_opened __ARGS((buf_T *bufp)); 18 void netbeans_file_opened(buf_T *bufp);
19 void netbeans_file_killed __ARGS((buf_T *bufp)); 19 void netbeans_file_killed(buf_T *bufp);
20 void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen)); 20 void netbeans_inserted(buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen);
21 void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len)); 21 void netbeans_removed(buf_T *bufp, linenr_T linenr, colnr_T col, long len);
22 void netbeans_unmodified __ARGS((buf_T *bufp)); 22 void netbeans_unmodified(buf_T *bufp);
23 void netbeans_button_release __ARGS((int button)); 23 void netbeans_button_release(int button);
24 int netbeans_keycommand __ARGS((int key)); 24 int netbeans_keycommand(int key);
25 void netbeans_save_buffer __ARGS((buf_T *bufp)); 25 void netbeans_save_buffer(buf_T *bufp);
26 void netbeans_deleted_all_lines __ARGS((buf_T *bufp)); 26 void netbeans_deleted_all_lines(buf_T *bufp);
27 int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot)); 27 int netbeans_is_guarded(linenr_T top, linenr_T bot);
28 void netbeans_draw_multisign_indicator __ARGS((int row)); 28 void netbeans_draw_multisign_indicator(int row);
29 void netbeans_gutter_click __ARGS((linenr_T lnum)); 29 void netbeans_gutter_click(linenr_T lnum);
30 /* vim: set ft=c : */ 30 /* vim: set ft=c : */