- NDK fix: don't undef a million status codes, instead, have apps define WIN32_NO_STATUS.

- 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
This commit is contained in:
Alex Ionescu 2005-10-19 17:03:38 +00:00
parent 593300080a
commit 8c002db0c2
139 changed files with 688 additions and 685 deletions

View file

@ -21,7 +21,7 @@
* @implemented
*/
VOID
STDCALL
NTAPI
RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
{
CONTEXT Context;
@ -67,7 +67,7 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
* @implemented
*/
VOID
STDCALL
NTAPI
RtlRaiseStatus(NTSTATUS Status)
{
EXCEPTION_RECORD ExceptionRecord;
@ -113,7 +113,7 @@ RtlRaiseStatus(NTSTATUS Status)
* @unimplemented
*/
USHORT
STDCALL
NTAPI
RtlCaptureStackBackTrace(IN ULONG FramesToSkip,
IN ULONG FramesToCapture,
OUT PVOID *BackTrace,
@ -127,7 +127,7 @@ RtlCaptureStackBackTrace(IN ULONG FramesToSkip,
* @unimplemented
*/
ULONG
STDCALL
NTAPI
RtlWalkFrameChain(OUT PVOID *Callers,
IN ULONG Count,
IN ULONG Flags)