GList

Main Gtk struct. The GList struct is used for each element in a doubly-linked list. gpointer data; holds the element's data, which can be a pointer to any kind of data, or any integer value using the Type Conversion Macros. GList *next; contains the link to the next element in the list. GList *prev; contains the link to the previous element in the list.

Members

Variables

data
void* data;
Undocumented in source.
next
GList* next;
Undocumented in source.
prev
GList* prev;
Undocumented in source.

Meta