Sync with trunk.
[reactos.git] / dll / ntdll / include / ntdll.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: dll/ntdll/include/ntdll.h
5 * PURPOSE: Native Libary Header
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* We're a core NT DLL, we don't import syscalls */
12 #define _NTSYSTEM_
13 #define _NTDLLBUILD_
14
15 /* C Headers */
16 #define _CTYPE_DISABLE_MACROS
17 #define _CRT_SECURE_NO_DEPRECATE
18 #define _INC_SWPRINTF_INL_
19 #include <stdio.h>
20
21 /* SDK/DDK/NDK Headers. */
22 #define WIN32_NO_STATUS
23 #include <windef.h>
24 #include <winbase.h>
25 #include <winreg.h>
26 #include <wingdi.h>
27 #include <wincon.h>
28 #include <winuser.h>
29 #define NTOS_MODE_USER
30 #include <ndk/cmfuncs.h>
31 #include <ndk/dbgkfuncs.h>
32 #include <ndk/exfuncs.h>
33 #include <ndk/iofuncs.h>
34 #include <ndk/kdtypes.h>
35 #include <ndk/kefuncs.h>
36 #include <ndk/ldrfuncs.h>
37 #include <ndk/lpcfuncs.h>
38 #include <ndk/mmfuncs.h>
39 #include <ndk/obfuncs.h>
40 #include <ndk/psfuncs.h>
41 #include <ndk/rtlfuncs.h>
42 #include <ndk/umfuncs.h>
43
44 /* Internal NTDLL */
45 #include "ntdllp.h"
46
47 /* CSRSS Headers */
48 #include <csr/csrsrv.h>
49 #include <csr/csr.h>
50
51 /* PSEH */
52 #include <pseh/pseh2.h>
53
54 /* EOF */