Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* os_unix.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | int mch_chdir(char *path); |
| 3 | void mch_write(char_u *s, int len); |
| 4 | int mch_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt); |
| 5 | int mch_char_avail(void); |
| 6 | long_u mch_total_mem(int special); |
| 7 | void mch_delay(long msec, int ignoreinput); |
| 8 | int mch_stackcheck(char *p); |
| 9 | void mch_startjmp(void); |
| 10 | void mch_endjmp(void); |
| 11 | void mch_didjmp(void); |
| 12 | void mch_suspend(void); |
| 13 | void mch_init(void); |
| 14 | void reset_signals(void); |
| 15 | int vim_handle_signal(int sig); |
| 16 | int mch_check_win(int argc, char **argv); |
| 17 | int mch_input_isatty(void); |
| 18 | int mch_can_restore_title(void); |
| 19 | int mch_can_restore_icon(void); |
| 20 | void mch_settitle(char_u *title, char_u *icon); |
| 21 | void mch_restore_title(int which); |
| 22 | int vim_is_xterm(char_u *name); |
| 23 | int use_xterm_like_mouse(char_u *name); |
| 24 | int use_xterm_mouse(void); |
| 25 | int vim_is_iris(char_u *name); |
| 26 | int vim_is_vt300(char_u *name); |
| 27 | int vim_is_fastterm(char_u *name); |
| 28 | int mch_get_user_name(char_u *s, int len); |
| 29 | int mch_get_uname(uid_t uid, char_u *s, int len); |
| 30 | void mch_get_host_name(char_u *s, int len); |
| 31 | long mch_get_pid(void); |
| 32 | int mch_dirname(char_u *buf, int len); |
| 33 | int mch_FullName(char_u *fname, char_u *buf, int len, int force); |
| 34 | int mch_isFullName(char_u *fname); |
| 35 | void fname_case(char_u *name, int len); |
| 36 | long mch_getperm(char_u *name); |
| 37 | int mch_setperm(char_u *name, long perm); |
| 38 | void mch_copy_sec(char_u *from_file, char_u *to_file); |
| 39 | vim_acl_T mch_get_acl(char_u *fname); |
| 40 | void mch_set_acl(char_u *fname, vim_acl_T aclent); |
| 41 | void mch_free_acl(vim_acl_T aclent); |
| 42 | void mch_hide(char_u *name); |
| 43 | int mch_isdir(char_u *name); |
| 44 | int mch_isrealdir(char_u *name); |
| 45 | int mch_can_exe(char_u *name, char_u **path, int use_path); |
| 46 | int mch_nodetype(char_u *name); |
| 47 | void mch_early_init(void); |
| 48 | void mch_free_mem(void); |
| 49 | void mch_exit(int r); |
| 50 | void mch_settmode(int tmode); |
| 51 | void get_stty(void); |
| 52 | void mch_setmouse(int on); |
| 53 | void check_mouse_termcode(void); |
| 54 | int mch_screenmode(char_u *arg); |
| 55 | int mch_get_shellsize(void); |
| 56 | void mch_set_shellsize(void); |
| 57 | void mch_new_shellsize(void); |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 58 | int mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 59 | int mch_call_shell(char_u *cmd, int options); |
Bram Moolenaar | 9a6e33a | 2016-02-16 19:25:12 +0100 | [diff] [blame] | 60 | void mch_start_job(char **argv, job_T *job, jobopt_T *options); |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 61 | char *mch_job_status(job_T *job); |
| 62 | int mch_stop_job(job_T *job, char_u *how); |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 63 | void mch_clear_job(job_T *job); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 64 | void mch_breakcheck(void); |
| 65 | int mch_expandpath(garray_T *gap, char_u *path, int flags); |
| 66 | int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags); |
| 67 | int mch_has_exp_wildcard(char_u *p); |
| 68 | int mch_has_wildcard(char_u *p); |
| 69 | int mch_libcall(char_u *libname, char_u *funcname, char_u *argstring, int argint, char_u **string_result, int *number_result); |
| 70 | void setup_term_clip(void); |
| 71 | void start_xterm_trace(int button); |
| 72 | void stop_xterm_trace(void); |
| 73 | void clear_xterm_clip(void); |
| 74 | int clip_xterm_own_selection(VimClipboard *cbd); |
| 75 | void clip_xterm_lose_selection(VimClipboard *cbd); |
| 76 | void clip_xterm_request_selection(VimClipboard *cbd); |
| 77 | void clip_xterm_set_selection(VimClipboard *cbd); |
| 78 | int xsmp_handle_requests(void); |
| 79 | void xsmp_init(void); |
| 80 | void xsmp_close(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 81 | /* vim: set ft=c : */ |