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