blob: 937765424ff3cb3be315cd30de7f15c880d94455 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* message.c */
2int msg __ARGS((char_u *s));
3int msg_attr __ARGS((char_u *s, int attr));
4int msg_attr_keep __ARGS((char_u *s, int attr, int keep));
5char_u *msg_strtrunc __ARGS((char_u *s));
6void trunc_string __ARGS((char_u *s, char_u *buf, int room));
7int emsg __ARGS((char_u *s));
8int emsg2 __ARGS((char_u *s, char_u *a1));
9int emsg3 __ARGS((char_u *s, char_u *a1, char_u *a2));
10int emsgn __ARGS((char_u *s, long n));
11char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr));
12char_u *msg_may_trunc __ARGS((int force, char_u *s));
13void ex_messages __ARGS((exarg_T *eap));
14void wait_return __ARGS((int redraw));
15void set_keep_msg __ARGS((char_u *s));
16void msg_start __ARGS((void));
17void msg_starthere __ARGS((void));
18void msg_putchar __ARGS((int c));
19void msg_putchar_attr __ARGS((int c, int attr));
20void msg_outnum __ARGS((long n));
21void msg_home_replace __ARGS((char_u *fname));
22void msg_home_replace_hl __ARGS((char_u *fname));
23int msg_outtrans __ARGS((char_u *str));
24int msg_outtrans_attr __ARGS((char_u *str, int attr));
25int msg_outtrans_len __ARGS((char_u *str, int len));
26char_u *msg_outtrans_one __ARGS((char_u *p, int attr));
27int msg_outtrans_len_attr __ARGS((char_u *msgstr, int len, int attr));
28void msg_make __ARGS((char_u *arg));
29int msg_outtrans_special __ARGS((char_u *strstart, int from));
30char_u *str2special __ARGS((char_u **sp, int from));
31void str2specialbuf __ARGS((char_u *sp, char_u *buf, int len));
32void msg_prt_line __ARGS((char_u *s));
33void msg_puts __ARGS((char_u *s));
34void msg_puts_title __ARGS((char_u *s));
35void msg_puts_long __ARGS((char_u *longstr));
36void msg_puts_long_attr __ARGS((char_u *longstr, int attr));
37void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr));
38void msg_puts_attr __ARGS((char_u *s, int attr));
39int msg_use_printf __ARGS((void));
40void mch_errmsg __ARGS((char *str));
41void mch_msg __ARGS((char *str));
42void msg_moremsg __ARGS((int full));
43void repeat_message __ARGS((void));
44void msg_clr_eos __ARGS((void));
45void msg_clr_eos_force __ARGS((void));
46void msg_clr_cmdline __ARGS((void));
47int msg_end __ARGS((void));
48void msg_check __ARGS((void));
49void give_warning __ARGS((char_u *message, int hl));
50void msg_advance __ARGS((int col));
51int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
52void display_confirm_msg __ARGS((void));
53int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt));
54int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt));
55int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt));
56char_u *do_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf));
57/* vim: set ft=c : */