Sebastian Lackner : include: Add definition for FILE_LINK_INFORMATION struct.
Module: wine Branch: master Commit: d5f8dd3aac184fe5d32f8f8d18929192cb496bfa URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5f8dd3aac184fe5d32f8f8d18... Author: Sebastian Lackner <sebastian(a)fds-team.de> Date: Thu Aug 20 09:22:07 2015 +0200 include: Add definition for FILE_LINK_INFORMATION struct. --- include/winternl.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/winternl.h b/include/winternl.h index 7ab1bd8..2b10f8d 100644 --- a/include/winternl.h +++ b/include/winternl.h @@ -567,6 +567,13 @@ typedef struct _FILE_RENAME_INFORMATION { WCHAR FileName[1]; } FILE_RENAME_INFORMATION, *PFILE_RENAME_INFORMATION; +typedef struct _FILE_LINK_INFORMATION { + BOOLEAN ReplaceIfExists; + HANDLE RootDirectory; + ULONG FileNameLength; + WCHAR FileName[1]; +} FILE_LINK_INFORMATION, *PFILE_LINK_INFORMATION; + typedef struct _FILE_NAMES_INFORMATION { ULONG NextEntryOffset; ULONG FileIndex;
participants (1)
-
Alexandre Julliard