| 58 | |
| 59 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 60 | PVOID AllocArray(SIZE_T ElementSize, SIZE_T ElementsCount) |
| 61 | { |
| 62 | return AllocFromPool(ElementSize * ElementsCount, TRUE); |
| 63 | } |
| 64 | |
| 65 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 66 | VOID FreePoolMemory(__drv_freesMem(Mem) PVOID Address) |
nothing calls this directly
no test coverage detected