libusb_pollfd_removed_cb typedef

libusb_pollfd_removed_cb = Pointer<NativeFunction<Void Function(dynamic, Pointer<Void>)>>

\ingroup libusb_poll Callback function, invoked when a file descriptor should be removed from the set of file descriptors being monitored for events. After returning from this callback, do not use that file descriptor again. \param fd the file descriptor to stop monitoring \param user_data User data pointer specified in libusb_set_pollfd_notifiers() call \see libusb_set_pollfd_notifiers()

Implementation

typedef libusb_pollfd_removed_cb = ffi.Pointer<
    ffi.NativeFunction<ffi.Void Function(pkg_ffi.Int, ffi.Pointer<ffi.Void>)>>;