libusb_handle_events_timeout_completed method

int libusb_handle_events_timeout_completed(
  1. Pointer<libusb_context> ctx,
  2. Pointer<timeval32> tv,
  3. Pointer<Int32> completed
)

Implementation

int libusb_handle_events_timeout_completed(
  ffi.Pointer<libusb_context> ctx,
  ffi.Pointer<timeval32> tv,
  ffi.Pointer<ffi.Int32> completed,
) {
  return (_libusb_handle_events_timeout_completed ??= _dylib.lookupFunction<
          _c_libusb_handle_events_timeout_completed,
          _dart_libusb_handle_events_timeout_completed>(
      'libusb_handle_events_timeout_completed'))(
    ctx,
    tv,
    completed,
  );
}