2005-06-17 17:22:19 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS System Libraries
|
2008-08-02 12:46:02 +00:00
|
|
|
* FILE: dll/ntdll/include/ntdll.h
|
2005-06-17 17:22:19 +00:00
|
|
|
* PURPOSE: Native Libary Header
|
|
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
2005-09-05 07:51:15 +00:00
|
|
|
/* We're a core NT DLL, we don't import syscalls */
|
|
|
|
#define _NTSYSTEM_
|
|
|
|
#define _NTDLLBUILD_
|
|
|
|
|
2005-07-26 14:00:45 +00:00
|
|
|
/* C Headers */
|
2005-07-27 16:18:06 +00:00
|
|
|
#define _CTYPE_DISABLE_MACROS
|
2005-10-19 23:08:12 +00:00
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
2005-07-27 16:18:06 +00:00
|
|
|
#define _INC_SWPRINTF_INL_
|
|
|
|
#include <limits.h>
|
2005-07-26 14:00:45 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2005-06-17 17:22:19 +00:00
|
|
|
/* SDK/DDK/NDK Headers. */
|
2005-10-19 17:03:38 +00:00
|
|
|
#define WIN32_NO_STATUS
|
2005-06-18 17:22:21 +00:00
|
|
|
#include <windows.h>
|
2005-06-19 20:28:20 +00:00
|
|
|
#define NTOS_MODE_USER
|
|
|
|
#include <ndk/ntndk.h>
|
2005-06-17 17:22:19 +00:00
|
|
|
|
2005-06-21 02:08:42 +00:00
|
|
|
/* Internal NTDLL */
|
|
|
|
#include "ntdllp.h"
|
|
|
|
|
|
|
|
/* CSRSS Header */
|
|
|
|
#include <csrss/csrss.h>
|
|
|
|
|
2009-06-22 20:00:38 +00:00
|
|
|
/* PSEH */
|
|
|
|
#include <pseh/pseh2.h>
|
|
|
|
|
2005-06-17 17:22:19 +00:00
|
|
|
/* EOF */
|