Function
GLibPtrArrayremove_index
Declaration [src]
gpointer
g_ptr_array_remove_index (
GPtrArray* array,
guint index_
)
Description [src]
Removes the pointer at the given index 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. If so, the return value from this function will potentially point
to freed memory (depending on the GDestroyNotify
implementation).
This function is not directly available to language bindings.