- Various Microsoft DDK/PSDK compatibility fixes and some MSVC stuff too.
[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 #undef IO_TYPE_FILE
22 #define IO_TYPE_FILE 0x0F5L /* Temp Hack */
23
24 /* FIXME: Temporary until CC Ros is gone */
25 #include <ccros.h>
26
27 /* ReactOS Headers */
28 #include <reactos/version.h>
29 #include <reactos/resource.h>
30 #include <reactos/bugcodes.h>
31 #include <reactos/rossym.h>
32
33 /* Disk Dump Driver Header */
34 #include <diskdump/diskdump.h>
35
36 /* C Headers */
37 #include <stdio.h>
38 #include <ctype.h>
39 #include <malloc.h>
40 #include <wchar.h>
41
42 /* SEH support with PSEH */
43 #include <pseh/pseh.h>
44
45 /* Helper Header */
46 #include <reactos/helper.h>
47
48 /* Internal Headers */
49 #include "internal/ntoskrnl.h"
50 #include "config.h"