mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[RTL] Implement RtlUnwind
This commit is contained in:
parent
8d3bc7c572
commit
66aa25b1cd
1 changed files with 12 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue