Function

GObjectCClosurenew_object

Declaration

GClosure*
g_cclosure_new_object (
  GCallback callback_func,
  GObject* object
)

Description

A variant of g_cclosure_new() which uses object as user_data and calls g_object_watch_closure() on object and the created closure. This function is useful when you have a callback closely associated with a GObject, and want the callback to no longer run after the object is is freed.

This function is not directly available to language bindings.

Parameters

callback_func

Type: GCallback

The function to invoke.

object

Type: GObject

A GObject pointer to pass to callback_func.

The data is owned by the caller of the function.

Return value

Type: GClosure

A new GCClosure.

The caller of the function takes ownership of the data, and is responsible for freeing it.