CloseHandle method

int CloseHandle(
  1. Pointer<Void> hObject
)

Implementation

int CloseHandle(
  ffi.Pointer<ffi.Void> hObject,
) {
  return (_CloseHandle ??= _dylib
      .lookupFunction<_c_CloseHandle, _dart_CloseHandle>('CloseHandle'))(
    hObject,
  );
}