MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / KbUnmapPhysicalMemory

Function KbUnmapPhysicalMemory

User-Bridge/API/User-Bridge.cpp:681–688  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

679 }
680
681 BOOL WINAPI KbUnmapPhysicalMemory(IN WdkTypes::PVOID VirtualAddress, ULONG Size)
682 {
683 if (!VirtualAddress || !Size) return FALSE;
684 KB_UNMAP_PHYSICAL_MEMORY_IN Input = {};
685 Input.VirtualAddress = VirtualAddress;
686 Input.Size = Size;
687 return KbSendRequest(Ctls::KbUnmapPhysicalMemory, &Input, sizeof(Input));
688 }
689
690 BOOL WINAPI KbGetPhysicalAddress(
691 IN OPTIONAL WdkTypes::PEPROCESS Process,

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected