Added stub for RtlAssert().

oldstable
Andreas Mohr 2000-02-20 13:47:28 +00:00 committed by Alexandre Julliard
parent 8097a26372
commit 63e8bd5d50
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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);
}