[PATCH 2/2] include: Add more types to ntifs.h

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Mon Mar 12 23:07:43 CDT 2018


Adds ntddk.h to be compatible with windows SDK.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 include/ddk/ntifs.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/include/ddk/ntifs.h b/include/ddk/ntifs.h
index 32c9e30..29465e8 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;
-- 
1.9.1




More information about the wine-devel mailing list