message.pro
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* message.c */
  2. int msg __ARGS((char_u *s));
  3. int msg_attr __ARGS((char_u *s, int attr));
  4. int emsg __ARGS((char_u *s));
  5. int emsg2 __ARGS((char_u *s, char_u *a1));
  6. int emsgn __ARGS((char_u *s, long n));
  7. char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr));
  8. void wait_return __ARGS((int redraw));
  9. void msg_start __ARGS((void));
  10. void msg_putchar __ARGS((int c));
  11. void msg_putchar_attr __ARGS((int c, int attr));
  12. void msg_outnum __ARGS((long n));
  13. void msg_home_replace __ARGS((char_u *fname));
  14. void msg_home_replace_hl __ARGS((char_u *fname));
  15. int msg_outtrans __ARGS((char_u *str));
  16. int msg_outtrans_attr __ARGS((char_u *str, int attr));
  17. int msg_outtrans_len __ARGS((char_u *str, int len));
  18. int msg_outtrans_len_attr __ARGS((char_u *str, int len, int attr));
  19. void msg_make __ARGS((char_u *arg));
  20. int msg_outtrans_special __ARGS((char_u *str, int all));
  21. void msg_prt_line __ARGS((char_u *s));
  22. void msg_puts __ARGS((char_u *s));
  23. void msg_puts_title __ARGS((char_u *s));
  24. void msg_puts_long __ARGS((char_u *longstr));
  25. void msg_puts_long_attr __ARGS((char_u *longstr, int attr));
  26. void msg_puts_long_len __ARGS((char_u *longstr, int len));
  27. void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr));
  28. void msg_puts_attr __ARGS((char_u *s, int attr));
  29. void msg_moremsg __ARGS((int full));
  30. void msg_clr_eos __ARGS((void));
  31. void msg_clr_cmdline __ARGS((void));
  32. int msg_end __ARGS((void));
  33. int msg_check __ARGS((void));
  34. void give_warning __ARGS((char_u *message, int hl));
  35. void msg_advance __ARGS((int col));
  36. int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton));
  37. void display_confirm_msg __ARGS((void));
  38. int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt));
  39. int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt));
  40. int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt));
  41. char_u *do_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, BUF *buf));