| 49 | |
| 50 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 51 | LPWSTR AllocWideString(SIZE_T Characters) { |
| 52 | return static_cast<LPWSTR>(AllocFromPool((Characters + 1) * sizeof(WCHAR), TRUE)); |
| 53 | } |
| 54 | |
| 55 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 56 | PVOID AllocArray(SIZE_T ElementSize, SIZE_T ElementsCount) { |
no test coverage detected