Alistair Leslie-Hughes : include: Add more types to ntifs.h.

Alexandre Julliard julliard at winehq.org
Sun Mar 3 13:21:25 CST 2019


Module: wine
Branch: oldstable
Commit: 7ca874ad6268c4b2f90b87824d9570a9d22ddf2a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=7ca874ad6268c4b2f90b87824d9570a9d22ddf2a

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed Mar 21 05:40:17 2018 +0000

include: Add more types to ntifs.h.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 210bb7ddb4e0888a43e66d41b18cba2165fcc3aa)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 include/ddk/ntifs.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/include/ddk/ntifs.h b/include/ddk/ntifs.h
index 32c9e30..8c63d0b 100644
--- a/include/ddk/ntifs.h
+++ b/include/ddk/ntifs.h
@@ -19,8 +19,24 @@
 #ifndef __NTIFS_H__
 #define __NTIFS_H__
 
+#include "ntddk.h"
+
 typedef struct _EX_PUSH_LOCK EX_PUSH_LOCK, *PEX_PUSH_LOCK;
 
+typedef enum _FS_FILTER_SECTION_SYNC_TYPE
+{
+    SyncTypeOther = 0,
+    SyncTypeCreateSection
+} FS_FILTER_SECTION_SYNC_TYPE, *PFS_FILTER_SECTION_SYNC_TYPE;
+
+typedef struct _FS_FILTER_SECTION_SYNC_OUTPUT
+{
+    ULONG StructureSize;
+    ULONG SizeReturned;
+    ULONG Flags;
+    ULONG DesiredReadAlignment;
+} FS_FILTER_SECTION_SYNC_OUTPUT, *PFS_FILTER_SECTION_SYNC_OUTPUT;
+
 typedef struct _KQUEUE
 {
   DISPATCHER_HEADER Header;
@@ -30,6 +46,7 @@ typedef struct _KQUEUE
   LIST_ENTRY ThreadListHead;
 } KQUEUE, *PKQUEUE, *RESTRICTED_POINTER PRKQUEUE;
 
+
 NTSTATUS WINAPI ObQueryNameString(PVOID,POBJECT_NAME_INFORMATION,ULONG,PULONG);
 
 #endif




More information about the wine-cvs mailing list