mirror of
https://github.com/reactos/reactos.git
synced 2026-06-23 14:13:55 +08:00
- winnt.h: respect WIN32_NO_STATUS for DBG codes. - rtl: change STDCALL to NTAPI - everything else: add precompiled headers where missing, define WIN32_NO_STATUS. svn path=/trunk/; revision=18598
29 lines
629 B
C
29 lines
629 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS System Libraries
|
|
* FILE: lib/rtl/rtl.h
|
|
* PURPOSE: Run-Time Libary Header
|
|
* PROGRAMMER: Alex Ionescu
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* We're a core NT DLL, we don't import syscalls */
|
|
#define _NTSYSTEM_
|
|
#define _NTDLLBUILD_
|
|
#define WIN32_NO_STATUS
|
|
#define NTOS_MODE_USER
|
|
#define _INC_SWPRINTF_INL_
|
|
|
|
/* C Headers */
|
|
#include <stdio.h>
|
|
|
|
/* PSDK/NDK Headers */
|
|
#include <windows.h>
|
|
#include <ndk/ntndk.h>
|
|
|
|
/* Internal RTL header */
|
|
#include "rtlp.h"
|
|
|
|
/* EOF */
|