- Created include/libs and moved all library headers there.
[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 /* FIXME: Temporary until CC Ros is gone */
28 #include <ccros.h>
29
30 /* ReactOS Headers */
31 #include <reactos/version.h>
32 #include <reactos/resource.h>
33 #include <reactos/bugcodes.h>
34 #include <reactos/rossym.h>
35
36 /* Disk Dump Driver Header */
37 #include <diskdump/diskdump.h>
38
39 /* C Headers */
40 #include <malloc.h>
41 #include <wchar.h>
42
43 /* SEH support with PSEH */
44 #include <pseh/pseh.h>
45
46 /* Helper Header */
47 #include <reactos/helper.h>
48
49 /* Internal Headers */
50 #include "internal/ntoskrnl.h"