[RTL] Implement RtlUnwind

This commit is contained in:
Timo Kreuzer 2022-08-22 08:43:47 +02:00
parent 8d3bc7c572
commit 66aa25b1cd

View file

@ -911,13 +911,19 @@ RtlUnwindEx(
VOID
NTAPI
RtlUnwind(
IN PVOID TargetFrame,
IN PVOID TargetIp,
IN PEXCEPTION_RECORD ExceptionRecord,
IN PVOID ReturnValue)
_In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue)
{
UNIMPLEMENTED;
return;
CONTEXT Context;
RtlUnwindEx(TargetFrame,
TargetIp,
ExceptionRecord,
ReturnValue,
&Context,
NULL);
}
ULONG