mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
9ea495ba33
svn path=/branches/header-work/; revision=45691
38 lines
842 B
C
38 lines
842 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS System Libraries
|
|
* FILE: dll/ntdll/include/ntdll.h
|
|
* PURPOSE: Native Libary Header
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
*/
|
|
|
|
/* 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 <limits.h>
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
|
|
/* SDK/DDK/NDK Headers. */
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/ntndk.h>
|
|
|
|
/* Internal NTDLL */
|
|
#include "ntdllp.h"
|
|
|
|
/* CSRSS Header */
|
|
#include <csrss/csrss.h>
|
|
|
|
/* PSEH */
|
|
#include <pseh/pseh2.h>
|
|
|
|
/* EOF */
|