Method
GLibQueueinsert_after_link
since: 2.62
Declaration [src]
void
g_queue_insert_after_link (
GQueue* queue,
GList* sibling,
GList* link_
)
Description [src]
Inserts link_
into queue
after sibling
.
sibling
must be part of queue
.
Available since: 2.62
This method is not directly available to language bindings.
Parameters
sibling
-
Type: A list of
gpointer
A
GList
link that must be part ofqueue
, orNULL
to push at the head of the queue.The argument can be NULL
.The data is owned by the caller of the method. link_
-
Type: A list of
gpointer
A
GList
link to insert which must not be part of any other list.The data is owned by the caller of the method.