include: Add more types to ntifs.h.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4e6900890d
commit
210bb7ddb4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue