[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 VOID
NTAPI NTAPI
RtlUnwind( RtlUnwind(
IN PVOID TargetFrame, _In_opt_ PVOID TargetFrame,
IN PVOID TargetIp, _In_opt_ PVOID TargetIp,
IN PEXCEPTION_RECORD ExceptionRecord, _In_opt_ PEXCEPTION_RECORD ExceptionRecord,
IN PVOID ReturnValue) _In_ PVOID ReturnValue)
{ {
UNIMPLEMENTED; CONTEXT Context;
return;
RtlUnwindEx(TargetFrame,
TargetIp,
ExceptionRecord,
ReturnValue,
&Context,
NULL);
} }
ULONG ULONG