函数

GObjectCClosuremarshal_BOOLEAN__BOXED_BOXED

声明 [原代码]

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

描述 [源]

一个用于带有接受两个boxed指针作为参数并返回布尔值的信号处理的GClosureMarshal函数。如果你有此类信号,你可能还需要使用累加器,例如 g_signal_accumulator_true_handled()。

参数

closure

类型:  GClosure

一个GClosure

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

类型:  GValue

用于存储返回值的GValue。如果闭包的回调不返回值,则可能是NULL

数据由函数的调用者拥有。
n_param_values

类型: guint

参数数组的长度param_values

param_values

类型:  GValue

一个包含用于调用闭包回调的参数的GValues数组的数组。

数据由函数的调用者拥有。
invocation_hint

类型: gpointer

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

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

类型: gpointer

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

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