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