| 1207 | } |
| 1208 | |
| 1209 | BOOL WINAPI KbUnmapViewOfSection( |
| 1210 | WdkTypes::HANDLE hProcess, |
| 1211 | WdkTypes::PVOID BaseAddress |
| 1212 | ) { |
| 1213 | KB_UNMAP_VIEW_OF_SECTION_IN Input = {}; |
| 1214 | Input.hProcess = hProcess; |
| 1215 | Input.BaseAddress = BaseAddress; |
| 1216 | return KbSendRequest(Ctls::KbUnmapViewOfSection, &Input, sizeof(Input)); |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | namespace KernelShells |
nothing calls this directly
no test coverage detected