Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* os_msdos.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void mch_set_normal_colors(void); |
| 3 | void mch_update_cursor(void); |
| 4 | long_u mch_avail_mem(int special); |
| 5 | void mch_delay(long msec, int ignoreinput); |
| 6 | void mch_write(char_u *s, int len); |
| 7 | int mch_inchar(char_u *buf, int maxlen, long time, int tb_change_cnt); |
| 8 | int mch_char_avail(void); |
| 9 | void mch_suspend(void); |
| 10 | void mch_init(void); |
| 11 | int mch_check_win(int argc, char **argv); |
| 12 | int mch_input_isatty(void); |
| 13 | void fname_case(char_u *name, int len); |
| 14 | long mch_get_pid(void); |
| 15 | int mch_FullName(char_u *fname, char_u *buf, int len, int force); |
| 16 | void slash_adjust(char_u *p); |
| 17 | int mch_isFullName(char_u *fname); |
| 18 | void mch_early_init(void); |
| 19 | void mch_exit(int r); |
| 20 | void mch_settmode(int tmode); |
| 21 | void mch_setmouse(int on); |
| 22 | int mch_screenmode(char_u *arg); |
| 23 | int mch_get_shellsize(void); |
| 24 | void mch_set_shellsize(void); |
| 25 | void mch_new_shellsize(void); |
| 26 | void mch_check_columns(void); |
| 27 | int mch_call_shell(char_u *cmd, int options); |
| 28 | void mch_breakcheck(void); |
| 29 | int mch_has_exp_wildcard(char_u *p); |
| 30 | int mch_has_wildcard(char_u *p); |
| 31 | int mch_chdir(char *path); |
| 32 | char *djgpp_setlocale(void); |
| 33 | int clip_mch_own_selection(VimClipboard *cbd); |
| 34 | void clip_mch_lose_selection(VimClipboard *cbd); |
| 35 | void clip_mch_request_selection(VimClipboard *cbd); |
| 36 | void clip_mch_set_selection(VimClipboard *cbd); |
| 37 | long mch_getperm(char_u *name); |
| 38 | int mch_setperm(char_u *name, long perm); |
| 39 | void mch_hide(char_u *name); |
| 40 | int mch_isdir(char_u *name); |
| 41 | int mch_can_exe(char_u *name, char_u **path, int use_path); |
| 42 | int mch_nodetype(char_u *name); |
| 43 | int mch_dirname(char_u *buf, int len); |
| 44 | int mch_remove(char_u *name); |
| 45 | char_u *mch_getenv(char_u *name); |
| 46 | int mch_get_user_name(char_u *s, int len); |
| 47 | void mch_get_host_name(char_u *s, int len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 48 | /* vim: set ft=c : */ |