comparison src/proto/message.pro @ 799:6beb2c667935

updated for version 7.0b
author vimboss
date Fri, 24 Mar 2006 22:21:52 +0000
parents e629de7618da
children 2c885fab04e3
comparison
equal deleted inserted replaced
798:95dac6af3b3a 799:6beb2c667935
1 /* message.c */ 1 /* message.c */
2 int msg __ARGS((char_u *s)); 2 extern int msg __ARGS((char_u *s));
3 int verb_msg __ARGS((char_u *s)); 3 extern int verb_msg __ARGS((char_u *s));
4 int msg_attr __ARGS((char_u *s, int attr)); 4 extern int msg_attr __ARGS((char_u *s, int attr));
5 int msg_attr_keep __ARGS((char_u *s, int attr, int keep)); 5 extern int msg_attr_keep __ARGS((char_u *s, int attr, int keep));
6 char_u *msg_strtrunc __ARGS((char_u *s, int force)); 6 extern char_u *msg_strtrunc __ARGS((char_u *s, int force));
7 void trunc_string __ARGS((char_u *s, char_u *buf, int room)); 7 extern void trunc_string __ARGS((char_u *s, char_u *buf, int room));
8 void reset_last_sourcing __ARGS((void)); 8 extern void reset_last_sourcing __ARGS((void));
9 void msg_source __ARGS((int attr)); 9 extern void msg_source __ARGS((int attr));
10 int emsg __ARGS((char_u *s)); 10 extern int emsg __ARGS((char_u *s));
11 int emsg2 __ARGS((char_u *s, char_u *a1)); 11 extern int emsg2 __ARGS((char_u *s, char_u *a1));
12 void emsg_invreg __ARGS((int name)); 12 extern void emsg_invreg __ARGS((int name));
13 char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr)); 13 extern char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr));
14 char_u *msg_may_trunc __ARGS((int force, char_u *s)); 14 extern char_u *msg_may_trunc __ARGS((int force, char_u *s));
15 int delete_first_msg __ARGS((void)); 15 extern int delete_first_msg __ARGS((void));
16 void ex_messages __ARGS((exarg_T *eap)); 16 extern void ex_messages __ARGS((exarg_T *eap));
17 void msg_end_prompt __ARGS((void)); 17 extern void msg_end_prompt __ARGS((void));
18 void wait_return __ARGS((int redraw)); 18 extern void wait_return __ARGS((int redraw));
19 void set_keep_msg __ARGS((char_u *s, int attr)); 19 extern void set_keep_msg __ARGS((char_u *s, int attr));
20 void set_keep_msg_from_hist __ARGS((void)); 20 extern void set_keep_msg_from_hist __ARGS((void));
21 void msg_start __ARGS((void)); 21 extern void msg_start __ARGS((void));
22 void msg_starthere __ARGS((void)); 22 extern void msg_starthere __ARGS((void));
23 void msg_putchar __ARGS((int c)); 23 extern void msg_putchar __ARGS((int c));
24 void msg_putchar_attr __ARGS((int c, int attr)); 24 extern void msg_putchar_attr __ARGS((int c, int attr));
25 void msg_outnum __ARGS((long n)); 25 extern void msg_outnum __ARGS((long n));
26 void msg_home_replace __ARGS((char_u *fname)); 26 extern void msg_home_replace __ARGS((char_u *fname));
27 void msg_home_replace_hl __ARGS((char_u *fname)); 27 extern void msg_home_replace_hl __ARGS((char_u *fname));
28 int msg_outtrans __ARGS((char_u *str)); 28 extern int msg_outtrans __ARGS((char_u *str));
29 int msg_outtrans_attr __ARGS((char_u *str, int attr)); 29 extern int msg_outtrans_attr __ARGS((char_u *str, int attr));
30 int msg_outtrans_len __ARGS((char_u *str, int len)); 30 extern int msg_outtrans_len __ARGS((char_u *str, int len));
31 char_u *msg_outtrans_one __ARGS((char_u *p, int attr)); 31 extern char_u *msg_outtrans_one __ARGS((char_u *p, int attr));
32 int msg_outtrans_len_attr __ARGS((char_u *msgstr, int len, int attr)); 32 extern int msg_outtrans_len_attr __ARGS((char_u *msgstr, int len, int attr));
33 void msg_make __ARGS((char_u *arg)); 33 extern void msg_make __ARGS((char_u *arg));
34 int msg_outtrans_special __ARGS((char_u *strstart, int from)); 34 extern int msg_outtrans_special __ARGS((char_u *strstart, int from));
35 char_u *str2special __ARGS((char_u **sp, int from)); 35 extern char_u *str2special __ARGS((char_u **sp, int from));
36 void str2specialbuf __ARGS((char_u *sp, char_u *buf, int len)); 36 extern void str2specialbuf __ARGS((char_u *sp, char_u *buf, int len));
37 void msg_prt_line __ARGS((char_u *s, int list)); 37 extern void msg_prt_line __ARGS((char_u *s, int list));
38 void msg_puts __ARGS((char_u *s)); 38 extern void msg_puts __ARGS((char_u *s));
39 void msg_puts_title __ARGS((char_u *s)); 39 extern void msg_puts_title __ARGS((char_u *s));
40 void msg_puts_long_attr __ARGS((char_u *longstr, int attr)); 40 extern void msg_puts_long_attr __ARGS((char_u *longstr, int attr));
41 void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr)); 41 extern void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr));
42 void msg_puts_attr __ARGS((char_u *s, int attr)); 42 extern void msg_puts_attr __ARGS((char_u *s, int attr));
43 void may_clear_sb_text __ARGS((void)); 43 extern void may_clear_sb_text __ARGS((void));
44 void clear_sb_text __ARGS((void)); 44 extern void clear_sb_text __ARGS((void));
45 void show_sb_text __ARGS((void)); 45 extern void show_sb_text __ARGS((void));
46 int msg_use_printf __ARGS((void)); 46 extern int msg_use_printf __ARGS((void));
47 void mch_errmsg __ARGS((char *str)); 47 extern void mch_errmsg __ARGS((char *str));
48 void mch_msg __ARGS((char *str)); 48 extern void mch_msg __ARGS((char *str));
49 void msg_moremsg __ARGS((int full)); 49 extern void msg_moremsg __ARGS((int full));
50 void repeat_message __ARGS((void)); 50 extern void repeat_message __ARGS((void));
51 void msg_clr_eos __ARGS((void)); 51 extern void msg_clr_eos __ARGS((void));
52 void msg_clr_eos_force __ARGS((void)); 52 extern void msg_clr_eos_force __ARGS((void));
53 void msg_clr_cmdline __ARGS((void)); 53 extern void msg_clr_cmdline __ARGS((void));
54 int msg_end __ARGS((void)); 54 extern int msg_end __ARGS((void));
55 void msg_check __ARGS((void)); 55 extern void msg_check __ARGS((void));
56 void verbose_enter __ARGS((void)); 56 extern void verbose_enter __ARGS((void));
57 void verbose_leave __ARGS((void)); 57 extern void verbose_leave __ARGS((void));
58 void verbose_enter_scroll __ARGS((void)); 58 extern void verbose_enter_scroll __ARGS((void));
59 void verbose_leave_scroll __ARGS((void)); 59 extern void verbose_leave_scroll __ARGS((void));
60 void verbose_stop __ARGS((void)); 60 extern void verbose_stop __ARGS((void));
61 int verbose_open __ARGS((void)); 61 extern int verbose_open __ARGS((void));
62 void give_warning __ARGS((char_u *message, int hl)); 62 extern void give_warning __ARGS((char_u *message, int hl));
63 void msg_advance __ARGS((int col)); 63 extern void msg_advance __ARGS((int col));
64 int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield)); 64 extern int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
65 void display_confirm_msg __ARGS((void)); 65 extern void display_confirm_msg __ARGS((void));
66 int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt)); 66 extern int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt));
67 int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt)); 67 extern int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt));
68 int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt)); 68 extern int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt));
69 char_u *do_browse __ARGS((int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf)); 69 extern char_u *do_browse __ARGS((int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf));
70 /* vim: set ft=c : */ 70 /* vim: set ft=c : */