| 283 | |
| 284 | _IRQL_requires_max_(APC_LEVEL) |
| 285 | PVOID HeapObject::Alloc(SIZE_T Size, BOOLEAN ZeroMemory) const { |
| 286 | return AllocHeap(HeapHandle, Size, ZeroMemory); |
| 287 | } |
| 288 | |
| 289 | _IRQL_requires_max_(APC_LEVEL) |
| 290 | VOID HeapObject::Free(PVOID Address) const { |
nothing calls this directly
no test coverage detected