Method

GLibQueueremove

since: 2.4

Declaration [src]

gboolean
g_queue_remove (
  GQueue* queue,
  gconstpointer data
)

Description [src]

Removes the first element in queue that contains data.

Available since: 2.4

Parameters

data

Type: gconstpointer

The data to remove.

The argument can be NULL.
The data is owned by the caller of the function.

Return value

Type: gboolean

TRUE if data was found and removed from queue.