stop the abuse of having the ddk directory in the path when including a ddk header
[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
21 /* FIXME: Temporary until CC Ros is gone */
22 #include <ccros.h>
23
24 /* Disk Dump Driver Header */
25 #include <diskdump/diskdump.h>
26
27 /* C Headers */
28 #include <stdio.h>
29 #include <ctype.h>
30 #include <malloc.h>
31 #include <wchar.h>
32
33 /* SEH support with PSEH */
34 #include <pseh/pseh.h>
35
36 /* ReactOS Headers */
37 #include <reactos/version.h>
38 #include <reactos/resource.h>
39 #include <reactos/bugcodes.h>
40 #include <reactos/rossym.h>
41 #define ExRaiseStatus RtlRaiseStatus
42 #include <reactos/probe.h>
43
44 /* PNP GUIDs */
45 #include <umpnpmgr/sysguid.h>
46
47 /* Helper Header */
48 #include <reactos/helper.h>
49
50 /* Internal Headers */
51 #include "internal/ntoskrnl.h"
52 #include "config.h"