HeapCreate

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.SysInt)]
public static extern IntPtr HeapCreate(
   uint flOptions,
   UIntPtr dwInitialSize,
   UIntPtr dwMaximumSize
);

Microsoft documentation: Link

Last updated