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