blob: d76182d91fc2dfb28eba63fffa227c7532cf38e9 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* message.c */
2int msg __ARGS((char_u *s));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00003int verb_msg __ARGS((char_u *s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004int msg_attr __ARGS((char_u *s, int attr));
5int msg_attr_keep __ARGS((char_u *s, int attr, int keep));
6char_u *msg_strtrunc __ARGS((char_u *s));
7void trunc_string __ARGS((char_u *s, char_u *buf, int room));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00008void msg_source __ARGS((int attr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009int emsg __ARGS((char_u *s));
10int emsg2 __ARGS((char_u *s, char_u *a1));
Bram Moolenaardf177f62005-02-22 08:39:57 +000011void emsg_invreg __ARGS((int name));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr));
13char_u *msg_may_trunc __ARGS((int force, char_u *s));
Bram Moolenaar0a5fe212005-06-24 23:01:23 +000014int delete_first_msg __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015void ex_messages __ARGS((exarg_T *eap));
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000016void msg_end_prompt __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017void wait_return __ARGS((int redraw));
18void set_keep_msg __ARGS((char_u *s));
19void msg_start __ARGS((void));
20void msg_starthere __ARGS((void));
21void msg_putchar __ARGS((int c));
22void msg_putchar_attr __ARGS((int c, int attr));
23void msg_outnum __ARGS((long n));
24void msg_home_replace __ARGS((char_u *fname));
25void msg_home_replace_hl __ARGS((char_u *fname));
26int msg_outtrans __ARGS((char_u *str));
27int msg_outtrans_attr __ARGS((char_u *str, int attr));
28int msg_outtrans_len __ARGS((char_u *str, int len));
29char_u *msg_outtrans_one __ARGS((char_u *p, int attr));
30int msg_outtrans_len_attr __ARGS((char_u *msgstr, int len, int attr));
31void msg_make __ARGS((char_u *arg));
32int msg_outtrans_special __ARGS((char_u *strstart, int from));
33char_u *str2special __ARGS((char_u **sp, int from));
34void str2specialbuf __ARGS((char_u *sp, char_u *buf, int len));
Bram Moolenaardf177f62005-02-22 08:39:57 +000035void msg_prt_line __ARGS((char_u *s, int list));
Bram Moolenaar071d4272004-06-13 20:20:40 +000036void msg_puts __ARGS((char_u *s));
37void msg_puts_title __ARGS((char_u *s));
Bram Moolenaar071d4272004-06-13 20:20:40 +000038void msg_puts_long_attr __ARGS((char_u *longstr, int attr));
39void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr));
40void msg_puts_attr __ARGS((char_u *s, int attr));
41int msg_use_printf __ARGS((void));
42void mch_errmsg __ARGS((char *str));
43void mch_msg __ARGS((char *str));
44void msg_moremsg __ARGS((int full));
45void repeat_message __ARGS((void));
46void msg_clr_eos __ARGS((void));
47void msg_clr_eos_force __ARGS((void));
48void msg_clr_cmdline __ARGS((void));
49int msg_end __ARGS((void));
50void msg_check __ARGS((void));
Bram Moolenaara04f10b2005-05-31 22:09:46 +000051void verbose_enter __ARGS((void));
52void verbose_leave __ARGS((void));
53void verbose_enter_scroll __ARGS((void));
54void verbose_leave_scroll __ARGS((void));
55void verbose_stop __ARGS((void));
56int verbose_open __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000057void give_warning __ARGS((char_u *message, int hl));
58void msg_advance __ARGS((int col));
59int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
60void display_confirm_msg __ARGS((void));
61int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt));
62int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt));
63int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt));
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000064char_u *do_browse __ARGS((int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065/* vim: set ft=c : */