comparison src/proto/workshop.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 e63691e7c504
children
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* workshop.c */ 1 /* workshop.c */
2 void workshop_init __ARGS((void)); 2 void workshop_init(void);
3 void workshop_postinit __ARGS((void)); 3 void workshop_postinit(void);
4 void ex_wsverb __ARGS((exarg_T *eap)); 4 void ex_wsverb(exarg_T *eap);
5 char *workshop_get_editor_name __ARGS((void)); 5 char *workshop_get_editor_name(void);
6 char *workshop_get_editor_version __ARGS((void)); 6 char *workshop_get_editor_version(void);
7 void workshop_load_file __ARGS((char *filename, int line, char *frameid)); 7 void workshop_load_file(char *filename, int line, char *frameid);
8 void workshop_reload_file __ARGS((char *filename, int line)); 8 void workshop_reload_file(char *filename, int line);
9 void workshop_show_file __ARGS((char *filename)); 9 void workshop_show_file(char *filename);
10 void workshop_goto_line __ARGS((char *filename, int lineno)); 10 void workshop_goto_line(char *filename, int lineno);
11 void workshop_front_file __ARGS((char *filename)); 11 void workshop_front_file(char *filename);
12 void workshop_save_file __ARGS((char *filename)); 12 void workshop_save_file(char *filename);
13 void workshop_save_files __ARGS((void)); 13 void workshop_save_files(void);
14 void workshop_quit __ARGS((void)); 14 void workshop_quit(void);
15 void workshop_minimize __ARGS((void)); 15 void workshop_minimize(void);
16 void workshop_maximize __ARGS((void)); 16 void workshop_maximize(void);
17 void workshop_add_mark_type __ARGS((int idx, char *colorspec, char *sign)); 17 void workshop_add_mark_type(int idx, char *colorspec, char *sign);
18 void workshop_set_mark __ARGS((char *filename, int lineno, int markId, int idx)); 18 void workshop_set_mark(char *filename, int lineno, int markId, int idx);
19 void workshop_change_mark_type __ARGS((char *filename, int markId, int idx)); 19 void workshop_change_mark_type(char *filename, int markId, int idx);
20 void workshop_goto_mark __ARGS((char *filename, int markId, char *message)); 20 void workshop_goto_mark(char *filename, int markId, char *message);
21 void workshop_delete_mark __ARGS((char *filename, int markId)); 21 void workshop_delete_mark(char *filename, int markId);
22 int workshop_get_mark_lineno __ARGS((char *filename, int markId)); 22 int workshop_get_mark_lineno(char *filename, int markId);
23 void workshop_moved_marks __ARGS((char *filename)); 23 void workshop_moved_marks(char *filename);
24 int workshop_get_font_height __ARGS((void)); 24 int workshop_get_font_height(void);
25 void workshop_footer_message __ARGS((char *message, int severity)); 25 void workshop_footer_message(char *message, int severity);
26 void workshop_menu_begin __ARGS((char *label)); 26 void workshop_menu_begin(char *label);
27 void workshop_submenu_begin __ARGS((char *label)); 27 void workshop_submenu_begin(char *label);
28 void workshop_submenu_end __ARGS((void)); 28 void workshop_submenu_end(void);
29 void workshop_menu_item __ARGS((char *label, char *verb, char *accelerator, char *acceleratorText, char *name, char *filepos, char *sensitive)); 29 void workshop_menu_item(char *label, char *verb, char *accelerator, char *acceleratorText, char *name, char *filepos, char *sensitive);
30 void workshop_menu_end __ARGS((void)); 30 void workshop_menu_end(void);
31 void workshop_toolbar_begin __ARGS((void)); 31 void workshop_toolbar_begin(void);
32 void workshop_toolbar_end __ARGS((void)); 32 void workshop_toolbar_end(void);
33 void workshop_toolbar_button __ARGS((char *label, char *verb, char *senseVerb, char *filepos, char *help, char *sense, char *file, char *left)); 33 void workshop_toolbar_button(char *label, char *verb, char *senseVerb, char *filepos, char *help, char *sense, char *file, char *left);
34 void workshop_frame_sensitivities __ARGS((VerbSense *vs)); 34 void workshop_frame_sensitivities(VerbSense *vs);
35 void workshop_set_option __ARGS((char *option, char *value)); 35 void workshop_set_option(char *option, char *value);
36 void workshop_balloon_mode __ARGS((Boolean on)); 36 void workshop_balloon_mode(Boolean on);
37 void workshop_balloon_delay __ARGS((int delay)); 37 void workshop_balloon_delay(int delay);
38 void workshop_show_balloon_tip __ARGS((char *tip)); 38 void workshop_show_balloon_tip(char *tip);
39 void workshop_hotkeys __ARGS((Boolean on)); 39 void workshop_hotkeys(Boolean on);
40 int workshop_get_positions __ARGS((void *clientData, char **filename, int *curLine, int *curCol, int *selStartLine, int *selStartCol, int *selEndLine, int *selEndCol, int *selLength, char **selection)); 40 int workshop_get_positions(void *clientData, char **filename, int *curLine, int *curCol, int *selStartLine, int *selStartCol, int *selEndLine, int *selEndCol, int *selLength, char **selection);
41 char *workshop_test_getcurrentfile __ARGS((void)); 41 char *workshop_test_getcurrentfile(void);
42 int workshop_test_getcursorrow __ARGS((void)); 42 int workshop_test_getcursorrow(void);
43 int workshop_test_getcursorcol __ARGS((void)); 43 int workshop_test_getcursorcol(void);
44 char *workshop_test_getcursorrowtext __ARGS((void)); 44 char *workshop_test_getcursorrowtext(void);
45 char *workshop_test_getselectedtext __ARGS((void)); 45 char *workshop_test_getselectedtext(void);
46 void workshop_save_sensitivity __ARGS((char *filename)); 46 void workshop_save_sensitivity(char *filename);
47 void workshop_beval_cb __ARGS((BalloonEval *beval, int state)); 47 void workshop_beval_cb(BalloonEval *beval, int state);
48 void findYourself __ARGS((char *argv0)); 48 void findYourself(char *argv0);
49 /* vim: set ft=c : */ 49 /* vim: set ft=c : */