Mercurial > vim
annotate src/proto/os_win32.pro @ 6999:dc1b678f0e4e v7.4.817
patch 7.4.817
Problem: Invalid memory access in file_pat_to_reg_pat().
Solution: Use vim_isspace() instead of checking for a space only. (Dominique
Pelle)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 11 Aug 2015 16:20:05 +0200 |
parents | 6529590f6c43 |
children | 42bf8902d4da |
rev | line source |
---|---|
7 | 1 /* os_win32.c */ |
2612 | 2 HINSTANCE vimLoadLib __ARGS((char *name)); |
1125 | 3 int dyn_libintl_init __ARGS((char *libname)); |
4 void dyn_libintl_end __ARGS((void)); | |
5 void PlatformId __ARGS((void)); | |
6 int mch_windows95 __ARGS((void)); | |
7 void mch_setmouse __ARGS((int on)); | |
8 void mch_update_cursor __ARGS((void)); | |
9 int mch_char_avail __ARGS((void)); | |
10 int mch_inchar __ARGS((char_u *buf, int maxlen, long time, int tb_change_cnt)); | |
11 void mch_init __ARGS((void)); | |
12 void mch_exit __ARGS((int r)); | |
13 int mch_check_win __ARGS((int argc, char **argv)); | |
14 void fname_case __ARGS((char_u *name, int len)); | |
15 int mch_get_user_name __ARGS((char_u *s, int len)); | |
16 void mch_get_host_name __ARGS((char_u *s, int len)); | |
17 long mch_get_pid __ARGS((void)); | |
18 int mch_dirname __ARGS((char_u *buf, int len)); | |
19 long mch_getperm __ARGS((char_u *name)); | |
20 int mch_setperm __ARGS((char_u *name, long perm)); | |
21 void mch_hide __ARGS((char_u *name)); | |
22 int mch_isdir __ARGS((char_u *name)); | |
2803 | 23 int mch_mkdir __ARGS((char_u *name)); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
3929
diff
changeset
|
24 int mch_is_hard_link __ARGS((char_u *fname)); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
3929
diff
changeset
|
25 int mch_is_symbolic_link __ARGS((char_u *fname)); |
1125 | 26 int mch_is_linked __ARGS((char_u *fname)); |
3929 | 27 int win32_fileinfo __ARGS((char_u *fname, BY_HANDLE_FILE_INFORMATION *info)); |
1125 | 28 int mch_writable __ARGS((char_u *name)); |
6695 | 29 int mch_can_exe __ARGS((char_u *name, char_u **path, int use_path)); |
1125 | 30 int mch_nodetype __ARGS((char_u *name)); |
31 vim_acl_T mch_get_acl __ARGS((char_u *fname)); | |
32 void mch_set_acl __ARGS((char_u *fname, vim_acl_T acl)); | |
33 void mch_free_acl __ARGS((vim_acl_T acl)); | |
34 void mch_settmode __ARGS((int tmode)); | |
35 int mch_get_shellsize __ARGS((void)); | |
36 void mch_set_shellsize __ARGS((void)); | |
37 void mch_new_shellsize __ARGS((void)); | |
38 void mch_set_winsize_now __ARGS((void)); | |
39 int mch_call_shell __ARGS((char_u *cmd, int options)); | |
40 void mch_set_normal_colors __ARGS((void)); | |
41 void mch_write __ARGS((char_u *s, int len)); | |
42 void mch_delay __ARGS((long msec, int ignoreinput)); | |
43 int mch_remove __ARGS((char_u *name)); | |
44 void mch_breakcheck __ARGS((void)); | |
45 int mch_wrename __ARGS((WCHAR *wold, WCHAR *wnew)); | |
46 int mch_rename __ARGS((const char *pszOldFile, const char *pszNewFile)); | |
47 char *default_shell __ARGS((void)); | |
48 int mch_access __ARGS((char *n, int p)); | |
49 int mch_open __ARGS((char *name, int flags, int mode)); | |
50 FILE *mch_fopen __ARGS((char *name, char *mode)); | |
51 int mch_copy_file_attribute __ARGS((char_u *from, char_u *to)); | |
52 int myresetstkoflw __ARGS((void)); | |
53 int get_cmd_argsW __ARGS((char ***argvp)); | |
54 void free_cmd_argsW __ARGS((void)); | |
55 void used_file_arg __ARGS((char *name, int literal, int full_path, int diff_mode)); | |
56 void set_alist_count __ARGS((void)); | |
57 void fix_arg_enc __ARGS((void)); | |
7 | 58 /* vim: set ft=c : */ |