From 63e8bd5d50b6ca7d4f9c2c67abf8d8f2331aeaf9 Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Sun, 20 Feb 2000 13:47:28 +0000 Subject: [PATCH] Added stub for RtlAssert(). --- dlls/ntdll/ntdll.spec | 2 +- dlls/ntdll/rtl.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/ntdll/ntdll.spec b/dlls/ntdll/ntdll.spec index 49176d58f87..8aaf826d03d 100644 --- a/dlls/ntdll/ntdll.spec +++ b/dlls/ntdll/ntdll.spec @@ -284,7 +284,7 @@ type win32 @ stub RtlAreAnyAccessesGranted @ stub RtlAreBitsClear @ stub RtlAreBitsSet -@ stub RtlAssert +@ stdcall RtlAssert(ptr ptr long long) RtlAssert @ stub RtlCaptureStackBackTrace @ stub RtlCharToInteger @ stub RtlCheckRegistryKey diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index 8f2450c43aa..4b379c4aabe 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -502,3 +502,12 @@ NTSTATUS WINAPI RtlClearBits(DWORD x1,DWORD x2,DWORD x3) return 0; } +/****************************************************************************** + * RtlAssert [NTDLL] + * + * Not implemented in non-debug versions. + */ +void WINAPI RtlAssert(LPVOID x1,LPVOID x2,DWORD x3, DWORD x4) +{ + FIXME("(%p,%p,0x%08lx,0x%08lx),stub\n",x1,x2,x3,x4); +}