mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 14:45:12 +00:00
14 lines
438 B
C++
14 lines
438 B
C++
#include "winnt.h"
|
|
|
|
#include "common.h"
|
|
|
|
namespace kernel32 {
|
|
|
|
void WIN_FUNC RtlUnwind(PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue) {
|
|
HOST_CONTEXT_GUARD();
|
|
DEBUG_LOG("RtlUnwind(%p, %p, %p, %p)\n", TargetFrame, TargetIp, ExceptionRecord, ReturnValue);
|
|
DEBUG_LOG("WARNING: Silently returning from RtlUnwind - exception handlers and clean up code may not be run\n");
|
|
}
|
|
|
|
} // namespace kernel32
|