| 54 | |
| 55 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 56 | PVOID AllocArray(SIZE_T ElementSize, SIZE_T ElementsCount) { |
| 57 | return AllocFromPool(ElementSize * ElementsCount, TRUE); |
| 58 | } |
| 59 | |
| 60 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 61 | VOID FreePoolMemory(__drv_freesMem(Mem) PVOID Address) { |
nothing calls this directly
no test coverage detected