d4fd4a38a728a6f2cef0cd5f08c5d77fab6d4ca0
[reactos.git] / reactos / lib / ntdll / inc / ntdll.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: lib/ntdll/inc/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 /* ELF Support */
30 #include <elf/elf.h>
31
32 /* Internal NTDLL */
33 #include "ntdllp.h"
34
35 /* CSRSS Header */
36 #include <csrss/csrss.h>
37
38 /* Helper Macros */
39 #include <reactos/helper.h>
40
41 /* EOF */