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
|
2015-08-29 01:56:11 +00:00
|
|
|
* PURPOSE: Native Library Header
|
2005-06-17 17:22:19 +00:00
|
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
|
|
*/
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#ifndef _NTDLL_H
|
|
|
|
#define _NTDLL_H
|
|
|
|
|
2005-06-17 17:22:19 +00:00
|
|
|
/* 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_
|
2005-07-26 14:00:45 +00:00
|
|
|
#include <stdio.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
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <winuser.h>
|
2014-06-23 20:30:54 +00:00
|
|
|
#include <dpfilter.h>
|
2005-06-19 20:28:20 +00:00
|
|
|
#define NTOS_MODE_USER
|
2011-08-14 12:59:05 +00:00
|
|
|
#include <ndk/cmfuncs.h>
|
|
|
|
#include <ndk/exfuncs.h>
|
|
|
|
#include <ndk/iofuncs.h>
|
|
|
|
#include <ndk/kefuncs.h>
|
|
|
|
#include <ndk/ldrfuncs.h>
|
|
|
|
#include <ndk/mmfuncs.h>
|
|
|
|
#include <ndk/obfuncs.h>
|
|
|
|
#include <ndk/psfuncs.h>
|
|
|
|
#include <ndk/rtlfuncs.h>
|
|
|
|
#include <ndk/umfuncs.h>
|
2005-06-17 17:22:19 +00:00
|
|
|
|
2005-06-21 02:08:42 +00:00
|
|
|
/* Internal NTDLL */
|
|
|
|
#include "ntdllp.h"
|
|
|
|
|
2009-06-22 20:00:38 +00:00
|
|
|
/* PSEH */
|
|
|
|
#include <pseh/pseh2.h>
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#endif /* _NTDLL_H */
|