mirror of
https://github.com/decompals/wibo.git
synced 2025-12-14 07:36:08 +00:00
Experimental 64-bit host support
This commit is contained in:
@@ -5,14 +5,15 @@
|
||||
#include "errors.h"
|
||||
#include "handles.h"
|
||||
#include "internal.h"
|
||||
#include "types.h"
|
||||
|
||||
namespace kernel32 {
|
||||
|
||||
BOOL WINAPI Wow64DisableWow64FsRedirection(PVOID *OldValue) {
|
||||
BOOL WINAPI Wow64DisableWow64FsRedirection(GUEST_PTR *OldValue) {
|
||||
HOST_CONTEXT_GUARD();
|
||||
DEBUG_LOG("STUB: Wow64DisableWow64FsRedirection(%p)\n", OldValue);
|
||||
if (OldValue) {
|
||||
*OldValue = nullptr;
|
||||
*OldValue = GUEST_NULL;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user