a7c6398167435106a0ed8c11b60731979861b951
[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 #define _NTSYSTEM_
14
15 /* DDK/IFS/NDK Headers */
16 #include <ntifs.h>
17 #include <ntddk.h>
18 #include <wdmguid.h>
19 #include <ndk/ntndk.h>
20 #undef TEXT
21 #define TEXT(s) L##s
22 #include <regstr.h>
23
24 /* FIXME: Temporary until CC Ros is gone */
25 #include <ccros.h>
26
27 /* Disk Dump Driver Header */
28 #include <diskdump/diskdump.h>
29
30 /* C Headers */
31 #include <stdio.h>
32 #include <ctype.h>
33 #include <malloc.h>
34 #include <wchar.h>
35
36 /* SEH support with PSEH */
37 #include <pseh/pseh.h>
38
39 /* ReactOS Headers */
40 #include <reactos/version.h>
41 #include <reactos/resource.h>
42 #include <reactos/bugcodes.h>
43 #include <reactos/rossym.h>
44 #define ExRaiseStatus RtlRaiseStatus
45 #include <reactos/probe.h>
46
47 /* PNP GUIDs */
48 #include <umpnpmgr/sysguid.h>
49
50 /* Helper Header */
51 #include <reactos/helper.h>
52
53 /* Internal Headers */
54 #include "internal/ntoskrnl.h"
55 #include "config.h"