| 293 | |
| 294 | _IRQL_requires_max_(APC_LEVEL) |
| 295 | LPSTR HeapObject::AllocAnsiString(SIZE_T Characters) const { |
| 296 | return static_cast<LPSTR>(AllocHeap(HeapHandle, (Characters + 1) * sizeof(CHAR))); |
| 297 | } |
| 298 | |
| 299 | _IRQL_requires_max_(APC_LEVEL) |
| 300 | LPWSTR HeapObject::AllocWideString(SIZE_T Characters) const { |
nothing calls this directly
no test coverage detected