Andrew Eikum : winbase.h: Add GetFileInformationByHandleEx.
Module: wine Branch: master Commit: 1f508587d629ab2bbc6634cb629cab224c2d6f8c URL: http://source.winehq.org/git/wine.git/?a=commit;h=1f508587d629ab2bbc6634cb62... Author: Andrew Eikum <aeikum(a)codeweavers.com> Date: Fri Jun 21 14:27:00 2013 -0500 winbase.h: Add GetFileInformationByHandleEx. --- include/winbase.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/winbase.h b/include/winbase.h index 4e21049..88b5e4f 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -1746,6 +1746,7 @@ WINBASEAPI BOOL WINAPI GetFileAttributesExA(LPCSTR,GET_FILEEX_INFO_LEVELS WINBASEAPI BOOL WINAPI GetFileAttributesExW(LPCWSTR,GET_FILEEX_INFO_LEVELS,LPVOID); #define GetFileAttributesEx WINELIB_NAME_AW(GetFileAttributesEx) WINBASEAPI BOOL WINAPI GetFileInformationByHandle(HANDLE,BY_HANDLE_FILE_INFORMATION*); +WINBASEAPI BOOL WINAPI GetFileInformationByHandleEx(HANDLE,FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD); WINADVAPI BOOL WINAPI GetFileSecurityA(LPCSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR,DWORD,LPDWORD); WINADVAPI BOOL WINAPI GetFileSecurityW(LPCWSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR,DWORD,LPDWORD); #define GetFileSecurity WINELIB_NAME_AW(GetFileSecurity)
participants (1)
-
Alexandre Julliard