trivial: More GObjectIntrospection fixes

This commit is contained in:
Richard Hughes 2021-05-11 09:22:54 +01:00
parent 8fe6a1dd0c
commit 88aff562d2

View File

@ -134,7 +134,17 @@ typedef enum {
*/
#define FU_DEVICE_REMOVE_DELAY_USER_REPLUG 40000
typedef gboolean (*FuDeviceRetryFunc) (FuDevice *device,
/**
* FuDeviceRetryFunc:
* @self: a #FuDevice
* @user_data: user data
* @error: (nullable): optional return location for an error
*
* The device retry iteration callback.
*
* Returns: %TRUE on success
*/
typedef gboolean (*FuDeviceRetryFunc) (FuDevice *self,
gpointer user_data,
GError **error)
G_GNUC_WARN_UNUSED_RESULT;