[MSGINA]
[reactos.git] / reactos / 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 <winuser.h>
27 #define NTOS_MODE_USER
28 #include <ndk/cmfuncs.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/mmfuncs.h>
35 #include <ndk/obfuncs.h>
36 #include <ndk/psfuncs.h>
37 #include <ndk/rtlfuncs.h>
38 #include <ndk/umfuncs.h>
39
40 /* Internal NTDLL */
41 #include "ntdllp.h"
42
43 /* CSRSS Headers */
44 #include <csr/csr.h>
45
46 /* PSEH */
47 #include <pseh/pseh2.h>
48
49 /* EOF */