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

Function KbFreePhysicalMemory

User-Bridge/API/User-Bridge.cpp:656–662  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

654 }
655
656 BOOL WINAPI KbFreePhysicalMemory(WdkTypes::PVOID Address)
657 {
658 if (!Address) return FALSE;
659 KB_FREE_PHYSICAL_MEMORY_IN Input = {};
660 Input.Address = Address;
661 return KbSendRequest(Ctls::KbFreePhysicalMemory, &Input, sizeof(Input));
662 }
663
664 BOOL WINAPI KbMapPhysicalMemory(
665 IN WdkTypes::PVOID PhysicalAddress,

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected