home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / proto / unix.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  1.9 KB  |  44 lines

  1. /* unix.c */
  2. void mch_write __PARMS((char_u *s, int len));
  3. int mch_inchar __PARMS((char_u *buf, int maxlen, long wtime));
  4. int mch_char_avail __PARMS((void));
  5. long mch_avail_mem __PARMS((int special));
  6. void mch_delay __PARMS((long msec, int ignoreinput));
  7. void mch_resize __PARMS((void));
  8. void mch_suspend __PARMS((void));
  9. void mch_windinit __PARMS((void));
  10. void reset_signals __PARMS((void));
  11. int mch_check_win __PARMS((int argc, char **argv));
  12. int mch_check_input __PARMS((void));
  13. int mch_can_restore_title __PARMS((void));
  14. int mch_can_restore_icon __PARMS((void));
  15. void mch_settitle __PARMS((char_u *title, char_u *icon));
  16. int is_xterm __PARMS((char_u *name));
  17. int is_iris_ansi __PARMS((char_u *name));
  18. int is_fastterm __PARMS((char_u *name));
  19. void mch_restore_title __PARMS((int which));
  20. int mch_get_user_name __PARMS((char_u *s, int len));
  21. void mch_get_host_name __PARMS((char_u *s, int len));
  22. long mch_get_pid __PARMS((void));
  23. int mch_dirname __PARMS((char_u *buf, int len));
  24. int FullName __PARMS((char_u *fname, char_u *buf, int len, int force));
  25. int isFullName __PARMS((char_u *fname));
  26. long getperm __PARMS((char_u *name));
  27. int setperm __PARMS((char_u *name, int perm));
  28. int mch_isdir __PARMS((char_u *name));
  29. void mch_windexit __PARMS((int r));
  30. void mch_settmode __PARMS((int raw));
  31. void get_stty __PARMS((void));
  32. void mch_setmouse __PARMS((int on));
  33. int mch_screenmode __PARMS((char_u *arg));
  34. int mch_get_winsize __PARMS((void));
  35. void mch_set_winsize __PARMS((void));
  36. int call_shell __PARMS((char_u *cmd, int options));
  37. int is_input_buf_full __PARMS((void));
  38. int is_input_buf_empty __PARMS((void));
  39. void add_to_input_buf __PARMS((char_u *s, int len));
  40. void trash_input_buf __PARMS((void));
  41. void mch_breakcheck __PARMS((void));
  42. int ExpandWildCards __PARMS((int num_pat, char_u **pat, int *num_file, char_u ***file, int files_only, int list_notfound));
  43. int mch_has_wildcard __PARMS((char_u *p));
  44.