Function
Grloperation_set_data_full
since: 0.2.7
Declaration [src]
void
grl_operation_set_data_full (
guint operation_id,
gpointer user_data,
GDestroyNotify destroy_func
)
Description [src]
Attach a pointer to the specific operation.
Note that the destroy_func
callback is not called if user_data
is NULL
.
Available since: 0.2.7
Parameters
operation_id
-
Type:
guint
The identifier of a running operation.
user_data
-
Type:
gpointer
The data to attach.
The argument can be NULL
.The data is owned by the caller of the function. destroy_func
-
Type:
GDestroyNotify
Function to release
user_data
when the operation terminates.The argument can be NULL
.