HeapUnlock method

int HeapUnlock(
  1. Pointer<Void> hHeap
)

Implementation

int HeapUnlock(
  ffi.Pointer<ffi.Void> hHeap,
) {
  return (_HeapUnlock ??=
      _dylib.lookupFunction<_c_HeapUnlock, _dart_HeapUnlock>('HeapUnlock'))(
    hHeap,
  );
}