Function
GLibPtrArrayremove
Declaration [src]
gboolean
g_ptr_array_remove (
GPtrArray* array,
gpointer data
)
Description [src]
Removes the first occurrence of the given pointer from the pointer
array. The following elements are moved down one place. If array
has a non-NULL
GDestroyNotify
function it is called for the
removed element.
It returns true if the pointer was removed, or false if the pointer was not found.
This function is not directly available to language bindings.