HeapDestroy method

int HeapDestroy(
  1. Pointer<Void> hHeap
)

Implementation

int HeapDestroy(
  ffi.Pointer<ffi.Void> hHeap,
) {
  return (_HeapDestroy ??= _dylib
      .lookupFunction<_c_HeapDestroy, _dart_HeapDestroy>('HeapDestroy'))(
    hHeap,
  );
}