From: Matthias Clasen Date: Wed, 23 Jun 2010 11:32:24 +0000 (-0400) Subject: Document g_cclosure_marshal_VOID__VARIANT X-Git-Tag: 2.25.10~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fadac4bd0f008dae058bcbc56b3073c6c38092a6;p=platform%2Fupstream%2Fglib.git Document g_cclosure_marshal_VOID__VARIANT --- diff --git a/gobject/gclosure.c b/gobject/gclosure.c index eaa7e09..a976a22 100644 --- a/gobject/gclosure.c +++ b/gobject/gclosure.c @@ -1171,7 +1171,23 @@ g_signal_type_cclosure_new (GType itype, * @marshal_data: additional data specified when registering the marshaller * * A marshaller for a #GCClosure with a callback of type - * void (*callback) (gpointer instance, GOBject *arg1, gpointer user_data). + * void (*callback) (gpointer instance, GObject *arg1, gpointer user_data). + */ + +/** + * g_cclosure_marshal_VOID__VARIANT: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: ignored + * @n_param_values: 2 + * @param_values: a #GValue array holding the instance and the #GVariant* parameter + * @invocation_hint: the invocation hint given as the last argument + * to g_closure_invoke() + * @marshal_data: additional data specified when registering the marshaller + * + * A marshaller for a #GCClosure with a callback of type + * void (*callback) (gpointer instance, GVariant *arg1, gpointer user_data). + * + * Since: 2.26 */ /**