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

Function KbUnmapMemory

User-Bridge/API/User-Bridge.cpp:623–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

621 }
622
623 BOOL WINAPI KbUnmapMemory(IN PMAPPING_INFO MappingInfo)
624 {
625 if (!MappingInfo || !MappingInfo->Mdl) return FALSE;
626 KB_UNMAP_MEMORY_IN Input = {};
627 Input.Mdl = MappingInfo->Mdl;
628 Input.BaseAddress = MappingInfo->MappedAddress;
629 return KbSendRequest(Ctls::KbUnmapMemory, &Input, sizeof(Input));
630 }
631}
632
633namespace PhysicalMemory

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected