comparison src/os_mswin.c @ 16354:b3bc3ba07bef v8.1.1182

patch 8.1.1182: some function prototypes are outdated commit https://github.com/vim/vim/commit/b9cdb37176a163f5047e149c3b568eee9883157c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 17 18:24:35 2019 +0200 patch 8.1.1182: some function prototypes are outdated Problem: Some function prototypes are outdated. Solution: Update function prototypes. (Ken Takata, closes https://github.com/vim/vim/issues/4267)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Apr 2019 18:30:05 +0200
parents 973070a30381
children 9d20e26dc13c
comparison
equal deleted inserted replaced
16353:e0266f56b5e8 16354:b3bc3ba07bef
96 typedef int LOGFONTW; 96 typedef int LOGFONTW;
97 typedef int LPARAM; 97 typedef int LPARAM;
98 typedef int LPBOOL; 98 typedef int LPBOOL;
99 typedef int LPCSTR; 99 typedef int LPCSTR;
100 typedef int LPCWSTR; 100 typedef int LPCWSTR;
101 typedef int LPDWORD;
101 typedef int LPSTR; 102 typedef int LPSTR;
102 typedef int LPTSTR; 103 typedef int LPTSTR;
104 typedef int LPVOID;
103 typedef int LPWSTR; 105 typedef int LPWSTR;
104 typedef int LRESULT; 106 typedef int LRESULT;
105 typedef int MOUSE_EVENT_RECORD; 107 typedef int MOUSE_EVENT_RECORD;
106 typedef int NEWTEXTMETRICW; 108 typedef int NEWTEXTMETRICW;
107 typedef int PACL; 109 typedef int PACL;
1731 LPDWORD lpFileSystemFlags, 1733 LPDWORD lpFileSystemFlags,
1732 LPWSTR lpFileSystemNameBuffer, 1734 LPWSTR lpFileSystemNameBuffer,
1733 DWORD nFileSystemNameSize); 1735 DWORD nFileSystemNameSize);
1734 static pfnGetVolumeInformationByHandleW pGetVolumeInformationByHandleW = NULL; 1736 static pfnGetVolumeInformationByHandleW pGetVolumeInformationByHandleW = NULL;
1735 1737
1736 char_u * 1738 static char_u *
1737 resolve_reparse_point(char_u *fname) 1739 resolve_reparse_point(char_u *fname)
1738 { 1740 {
1739 HANDLE h = INVALID_HANDLE_VALUE; 1741 HANDLE h = INVALID_HANDLE_VALUE;
1740 DWORD size; 1742 DWORD size;
1741 WCHAR *p; 1743 WCHAR *p;