eb9ec20cffe25afecc4202eefeeaecc7caa5b0d9
[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 <ddk/ntddk.h>
17 #include <ddk/ntifs.h>
18 #include <ddk/wdmguid.h>
19 #include <ndk/ntndk.h>
20 #include <ndk/sysguid.h>
21 #include <ndk/asm.h>
22
23 /* FIXME: Temporary until CC Ros is gone */
24 #include <ccros.h>
25
26 /* ReactOS Headers */
27 #include <reactos/version.h>
28 #include <reactos/resource.h>
29 #include <reactos/bugcodes.h>
30 #include <reactos/rossym.h>
31
32 /* Disk Dump Driver Header */
33 #include <diskdump/diskdump.h>
34
35 /* C Headers */
36 #include <stdio.h>
37 #include <ctype.h>
38 #include <malloc.h>
39 #include <wchar.h>
40
41 /* SEH support with PSEH */
42 #include <pseh/pseh.h>
43
44 /* Helper Header */
45 #include <reactos/helper.h>
46
47 /* Internal Headers */
48 #include "internal/ntoskrnl.h"
49 #include "config.h"