mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
d2aeaba5f8
Move CSRSS, CSRSRV there, as well as CSR client calls from NTDLL into a "CSRLIB" library.
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS System Libraries
|
|
* FILE: dll/ntdll/include/ntdll.h
|
|
* PURPOSE: Native Library Header
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
*/
|
|
|
|
#ifndef _NTDLL_H
|
|
#define _NTDLL_H
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* We're a core NT DLL, we don't import syscalls */
|
|
#define _NTSYSTEM_
|
|
#define _NTDLLBUILD_
|
|
|
|
/* C Headers */
|
|
#define _CTYPE_DISABLE_MACROS
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
#define _INC_SWPRINTF_INL_
|
|
#include <stdio.h>
|
|
|
|
/* SDK/DDK/NDK Headers. */
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <winuser.h>
|
|
#include <dpfilter.h>
|
|
#define NTOS_MODE_USER
|
|
#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>
|
|
|
|
/* Internal NTDLL */
|
|
#include "ntdllp.h"
|
|
|
|
/* PSEH */
|
|
#include <pseh/pseh2.h>
|
|
|
|
#endif /* _NTDLL_H */
|