mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:03:00 +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
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue