mirror of
https://github.com/decompals/wibo.git
synced 2025-12-16 00:17:04 +00:00
Split kernel32 into separate files (part 3)
This commit is contained in:
13
dll/kernel32/winnt.cpp
Normal file
13
dll/kernel32/winnt.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "winnt.h"
|
||||
|
||||
#include "common.h"
|
||||
|
||||
namespace kernel32 {
|
||||
|
||||
void WIN_FUNC RtlUnwind(PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue) {
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user