blob: c66c702b251b89a8d4d7bcddbec94ba054db2aa9 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_cmds2.c */
2void do_debug __ARGS((char_u *cmd));
3void ex_debug __ARGS((exarg_T *eap));
4void dbg_check_breakpoint __ARGS((exarg_T *eap));
5int dbg_check_skipped __ARGS((exarg_T *eap));
6void ex_breakadd __ARGS((exarg_T *eap));
7void ex_debuggreedy __ARGS((exarg_T *eap));
8void ex_breakdel __ARGS((exarg_T *eap));
9void ex_breaklist __ARGS((exarg_T *eap));
10linenr_T dbg_find_breakpoint __ARGS((int file, char_u *fname, linenr_T after));
11void dbg_breakpoint __ARGS((char_u *name, linenr_T lnum));
12int autowrite __ARGS((buf_T *buf, int forceit));
13void autowrite_all __ARGS((void));
14int check_changed __ARGS((buf_T *buf, int checkaw, int mult_win, int forceit, int allbuf));
15void browse_save_fname __ARGS((buf_T *buf));
16void dialog_changed __ARGS((buf_T *buf, int checkall));
17int can_abandon __ARGS((buf_T *buf, int forceit));
18int check_changed_any __ARGS((int hidden));
19int check_fname __ARGS((void));
20int buf_write_all __ARGS((buf_T *buf, int forceit));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021void set_arglist __ARGS((char_u *str));
22void check_arg_idx __ARGS((win_T *win));
23void ex_args __ARGS((exarg_T *eap));
24void ex_previous __ARGS((exarg_T *eap));
25void ex_rewind __ARGS((exarg_T *eap));
26void ex_last __ARGS((exarg_T *eap));
27void ex_argument __ARGS((exarg_T *eap));
28void do_argfile __ARGS((exarg_T *eap, int argn));
29void ex_next __ARGS((exarg_T *eap));
30void ex_argedit __ARGS((exarg_T *eap));
31void ex_argadd __ARGS((exarg_T *eap));
32void ex_argdelete __ARGS((exarg_T *eap));
33void ex_listdo __ARGS((exarg_T *eap));
34void ex_compiler __ARGS((exarg_T *eap));
35void ex_runtime __ARGS((exarg_T *eap));
36int cmd_runtime __ARGS((char_u *name, int all));
37int do_in_runtimepath __ARGS((char_u *name, int all, void (*callback)(char_u *fname)));
38void ex_options __ARGS((exarg_T *eap));
39void ex_source __ARGS((exarg_T *eap));
40linenr_T *source_breakpoint __ARGS((void *cookie));
41int *source_dbg_tick __ARGS((void *cookie));
42int source_level __ARGS((void *cookie));
43int do_source __ARGS((char_u *fname, int check_other, int is_vimrc));
44void ex_scriptnames __ARGS((exarg_T *eap));
45void scriptnames_slash_adjust __ARGS((void));
46char_u *get_scriptname __ARGS((scid_T id));
47char *fgets_cr __ARGS((char *s, int n, FILE *stream));
48char_u *getsourceline __ARGS((int c, void *cookie, int indent));
49void ex_scriptencoding __ARGS((exarg_T *eap));
50void ex_finish __ARGS((exarg_T *eap));
51void do_finish __ARGS((exarg_T *eap, int reanimate));
52int source_finished __ARGS((char_u *(*getline)(int, void *, int), void *cookie));
53void ex_checktime __ARGS((exarg_T *eap));
54int get_printer_page_num __ARGS((void));
55int prt_header_height __ARGS((void));
56int prt_use_number __ARGS((void));
57int prt_get_unit __ARGS((int idx));
58void ex_hardcopy __ARGS((exarg_T *eap));
59void mch_print_cleanup __ARGS((void));
60int mch_print_init __ARGS((prt_settings_T *psettings, char_u *jobname, int forceit));
61int mch_print_begin __ARGS((prt_settings_T *psettings));
62void mch_print_end __ARGS((prt_settings_T *psettings));
63int mch_print_end_page __ARGS((void));
64int mch_print_begin_page __ARGS((char_u *str));
65int mch_print_blank_page __ARGS((void));
66void mch_print_start_line __ARGS((int margin, int page_line));
67int mch_print_text_out __ARGS((char_u *p, int len));
68void mch_print_set_font __ARGS((int iBold, int iItalic, int iUnderline));
69void mch_print_set_bg __ARGS((long_u bgcol));
70void mch_print_set_fg __ARGS((long_u fgcol));
71char_u *get_mess_lang __ARGS((void));
72void set_lang_var __ARGS((void));
73void ex_language __ARGS((exarg_T *eap));
74char_u *get_lang_arg __ARGS((expand_T *xp, int idx));
75/* vim: set ft=c : */