From: Liang Subject: [PATCH]include add declaration for FILE_LINK_INFORMATION Message-Id: <643d07f5.112c8.14d05a036ea.Coremail.bt2517@126.com> Date: Wed, 29 Apr 2015 22:41:35 +0800 (CST) --- include/winternl.h | 7 +++++++ 1 file changed, 7 insertions(+)
---
 include/winternl.h | 7 +++++++
 1 file changed, 7 insertions(+)




From 20cf1f5816de65412d809f0f41db8c2769c78040 Mon Sep 17 00:00:00 2001 From: Zhaonan Liang Date: Tue, 28 Apr 2015 19:06:31 +0800 Subject: [PATCH] include: add declaration for FILE_LINK_INFORMATION --- include/winternl.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/winternl.h b/include/winternl.h index 9231468..7d3ffd0 100644 --- a/include/winternl.h +++ b/include/winternl.h @@ -554,6 +554,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; -- 1.9.1