| 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 | |
| 633 | namespace PhysicalMemory |
nothing calls this directly
no test coverage detected