| 39 | |
| 40 | template <typename T> |
| 41 | inline T* Alloc() |
| 42 | { |
| 43 | return reinterpret_cast<T*>(AllocFromPool(sizeof(T))); |
| 44 | } |
| 45 | |
| 46 | // Free memory allocated by Alloc[FromPool[Executable]/AnsiString/WideString/Array]: |
| 47 | _IRQL_requires_max_(DISPATCH_LEVEL) |
no test coverage detected