Sync with trunk (r48545)
[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/ntndk.h>
28
29 /* Internal NTDLL */
30 #include "ntdllp.h"
31
32 /* CSRSS Header */
33 #include <csrss/csrss.h>
34
35 /* PSEH */
36 #include <pseh/pseh2.h>
37
38 /* EOF */