MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / AllocWideString

Function AllocWideString

Kernel-Bridge/API/MemoryUtils.cpp:51–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers 2

KbGetKernelProcAddressFunction · 0.85
KbCreateDriverFunction · 0.85

Calls 1

AllocFromPoolFunction · 0.85

Tested by

no test coverage detected