MCPcopy Create free account
hub / github.com/NoMercy-ac/NoMercy / AllocFromPoolExecutable

Function AllocFromPoolExecutable

Source/Client/NM_Sys/API/MemoryUtils.cpp:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37
38 _IRQL_requires_max_(DISPATCH_LEVEL)
39 PVOID AllocFromPoolExecutable(SIZE_T Bytes)
40 {
41 if (!Bytes)
42 return NULL;
43
44 return ExAllocatePoolWithTag(NonPagedPoolExecute, Bytes, PoolTag);
45 }
46
47 _IRQL_requires_max_(DISPATCH_LEVEL)
48 LPSTR AllocAnsiString(SIZE_T Characters)

Callers 1

KbAllocKernelMemoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected