| 44 | |
| 45 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 46 | LPSTR AllocAnsiString(SIZE_T Characters) { |
| 47 | return static_cast<LPSTR>(AllocFromPool((Characters + 1) * sizeof(CHAR), TRUE)); |
| 48 | } |
| 49 | |
| 50 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 51 | LPWSTR AllocWideString(SIZE_T Characters) { |
no test coverage detected