函数

GObjectClosureMarshal

声明

void
(* GClosureMarshal) (
  GClosure* closure,
  GValue* return_value,
  guint n_param_values,
  const GValue* param_values,
  gpointer invocation_hint,
  gpointer marshal_data
)

描述 [src]

用于marshaller函数的类型。

参数

closure

类型: GClosure

marshaller所属的GClosure

数据由函数的调用者所有。
return_value

类型: GValue

存储返回值的GValue。如果closure的回调不返回值,则可能为NULL

参数可以是NULL
数据由函数的调用者所有。
n_param_values

类型: guint

param_values数组长度。

param_values

类型: 一个GValue数组

一个包含要将回调应用于其上的参数的GValue数组。

数组的长度由n_param_values参数指定。
数据由函数的调用者所有。
invocation_hint

类型: gpointer

作为g_closure_invoke()的最后一个参数提供的调用提示。

参数可以是NULL
数据由函数的调用者所有。
marshal_data

类型: gpointer

在注册marshaller时指定的附加数据,请参阅g_closure_set_marshal()和g_closure_set_meta_marshal()。

参数可以是NULL
数据由函数的调用者所有。