| 544 | |
| 545 | _IRQL_requires_max_(APC_LEVEL) |
| 546 | VOID UnmapMdl(IN PMDL Mdl, IN PVOID MappedMemory, BOOLEAN NeedUnlock) { |
| 547 | MmUnmapLockedPages(MappedMemory, Mdl); |
| 548 | if (NeedUnlock) MmUnlockPages(Mdl); |
| 549 | } |
| 550 | |
| 551 | _IRQL_requires_max_(APC_LEVEL) |
| 552 | NTSTATUS MapMemory( |