include: Add more types to ntifs.h.
[wine.git] / include / ddk / ntifs.h
blob8c63d0b0be5808e9a4fc85b341298b1dd823281a
1 /*
2 * Copyright (C) 2014 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __NTIFS_H__
20 #define __NTIFS_H__
22 #include "ntddk.h"
24 typedef struct _EX_PUSH_LOCK EX_PUSH_LOCK, *PEX_PUSH_LOCK;
26 typedef enum _FS_FILTER_SECTION_SYNC_TYPE
28 SyncTypeOther = 0,
29 SyncTypeCreateSection
30 } FS_FILTER_SECTION_SYNC_TYPE, *PFS_FILTER_SECTION_SYNC_TYPE;
32 typedef struct _FS_FILTER_SECTION_SYNC_OUTPUT
34 ULONG StructureSize;
35 ULONG SizeReturned;
36 ULONG Flags;
37 ULONG DesiredReadAlignment;
38 } FS_FILTER_SECTION_SYNC_OUTPUT, *PFS_FILTER_SECTION_SYNC_OUTPUT;
40 typedef struct _KQUEUE
42 DISPATCHER_HEADER Header;
43 LIST_ENTRY EntryListHead;
44 volatile ULONG CurrentCount;
45 ULONG MaximumCount;
46 LIST_ENTRY ThreadListHead;
47 } KQUEUE, *PKQUEUE, *RESTRICTED_POINTER PRKQUEUE;
50 NTSTATUS WINAPI ObQueryNameString(PVOID,POBJECT_NAME_INFORMATION,ULONG,PULONG);
52 #endif