* Sync to trunk HEAD (r53318).
[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 <limits.h>
20 #include <stdio.h>
21 #include <ctype.h>
22
23 /* SDK/DDK/NDK Headers. */
24 #define WIN32_NO_STATUS
25 #include <windows.h>
26 #define NTOS_MODE_USER
27 #include <ndk/cmfuncs.h>
28 #include <ndk/dbgkfuncs.h>
29 #include <ndk/exfuncs.h>
30 #include <ndk/iofuncs.h>
31 #include <ndk/kdtypes.h>
32 #include <ndk/kefuncs.h>
33 #include <ndk/ldrfuncs.h>
34 #include <ndk/lpcfuncs.h>
35 #include <ndk/mmfuncs.h>
36 #include <ndk/obfuncs.h>
37 #include <ndk/psfuncs.h>
38 #include <ndk/rtlfuncs.h>
39 #include <ndk/umfuncs.h>
40
41 /* Internal NTDLL */
42 #include "ntdllp.h"
43
44 /* CSRSS Header */
45 #include <csrss/csrss.h>
46
47 /* PSEH */
48 #include <pseh/pseh2.h>
49
50 /* EOF */