VirtualAllocExNuma method

Pointer<Void> VirtualAllocExNuma(
  1. Pointer<Void> hProcess,
  2. Pointer<Void> lpAddress,
  3. int dwSize,
  4. int flAllocationType,
  5. int flProtect,
  6. int nndPreferred,
)

Implementation

ffi.Pointer<ffi.Void> VirtualAllocExNuma(
  ffi.Pointer<ffi.Void> hProcess,
  ffi.Pointer<ffi.Void> lpAddress,
  int dwSize,
  int flAllocationType,
  int flProtect,
  int nndPreferred,
) {
  return _VirtualAllocExNuma(
    hProcess,
    lpAddress,
    dwSize,
    flAllocationType,
    flProtect,
    nndPreferred,
  );
}