Function
GObjectCClosuremarshal_BOOLEAN__FLAGS
Declaration [src]
void
g_cclosure_marshal_BOOLEAN__FLAGS (
GClosure* closure,
GValue* return_value,
guint n_param_values,
const GValue* param_values,
gpointer invocation_hint,
gpointer marshal_data
)
Description [src]
A GClosureMarshal
function for use with signals with handlers that
take a flags type as an argument and return a boolean. If you have
such a signal, you will probably also need to use an accumulator,
such as g_signal_accumulator_true_handled().
Parameters
closure
-
Type:
GClosure
A
GClosure
.The data is owned by the caller of the function. return_value
-
Type:
GValue
A
GValue
to store the return value. May beNULL
if the callback of closure doesn’t return a value.The data is owned by the caller of the function. n_param_values
-
Type:
guint
The length of the
param_values
array. param_values
-
Type:
GValue
An array of
GValues
holding the arguments on which to invoke the callback of closure.The data is owned by the caller of the function. invocation_hint
-
Type:
gpointer
The invocation hint given as the last argument to g_closure_invoke().
The argument can be NULL
.The data is owned by the caller of the function. marshal_data
-
Type:
gpointer
Additional data specified when registering the marshaller, see
g_closure_set_marshal()
and g_closure_set_meta_marshal().The argument can be NULL
.The data is owned by the caller of the function.