6f0daa9da1c7407c57536971ecae2cc2c878c472
[reactos.git] / reactos / ntoskrnl / include / ntoskrnl.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Kernel
4 * FILE: ntoskrnl/include/ntoskrnl.h
5 * PURPOSE: Main Kernel Header
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* We are the Kernel */
12 #define NTKERNELAPI
13
14 /* include the ntoskrnl config.h file */
15 #include "config.h"
16
17 /* DDK/IFS/NDK Headers */
18 #include <ddk/ntddk.h>
19 #include <ddk/ntifs.h>
20 #include <ddk/wdmguid.h>
21 #include <ndk/ntndk.h>
22 #include <ndk/sysguid.h>
23 #include <ndk/asm.h>
24 #undef IO_TYPE_FILE
25 #define IO_TYPE_FILE 0x0F5L /* Temp Hack */
26
27 /* ReactOS Headers */
28 #include <reactos/version.h>
29 #include <reactos/resource.h>
30 #include <reactos/bugcodes.h>
31 #include <reactos/rossym.h>
32
33 /* C Headers */
34 #include <malloc.h>
35 #include <wchar.h>
36
37 /* SEH support with PSEH */
38 #include <pseh/pseh.h>
39
40 /* Helper Header */
41 #include <reactos/helper.h>
42
43 /* Internal Headers */
44 #include "internal/ntoskrnl.h"