HeapAlloc method

Pointer<Void> HeapAlloc(
  1. Pointer<Void> hHeap,
  2. int dwFlags,
  3. int dwBytes
)

Implementation

ffi.Pointer<ffi.Void> HeapAlloc(
  ffi.Pointer<ffi.Void> hHeap,
  int dwFlags,
  int dwBytes,
) {
  return _HeapAlloc(
    hHeap,
    dwFlags,
    dwBytes,
  );
}