Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 298 Bytes

heapalloc.md

File metadata and controls

12 lines (10 loc) · 298 Bytes

HeapAlloc

[DllImport("KERNEL32.dll", ExactSpelling = true)]
[DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
public static extern unsafe void* HeapAlloc(
    HANDLE hHeap,
    HEAP_FLAGS dwFlags,
    nuint dwBytes);

heap_flags.md