From 1c32dff7d6b4cf00d1e63ac79968e9deb8b90e2e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 5 May 2011 16:41:24 +0200 Subject: updated for version 7.3.172 Problem: MS-Windows: rename() might delete the file if the name differs but it's actually the same file. Solution: Use the file handle to check if it's the same file. (Yukihiro Nakadaira) --- src/proto/os_win32.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'src/proto') diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index 31aa269ae..a3f5b3ecd 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -21,6 +21,7 @@ int mch_setperm __ARGS((char_u *name, long perm)); void mch_hide __ARGS((char_u *name)); int mch_isdir __ARGS((char_u *name)); int mch_is_linked __ARGS((char_u *fname)); +int win32_fileinfo __ARGS((char_u *name, BY_HANDLE_FILE_INFORMATION *lpFileInfo)); int mch_writable __ARGS((char_u *name)); int mch_can_exe __ARGS((char_u *name)); int mch_nodetype __ARGS((char_u *name)); -- cgit v1.2.1