GSList

Main Gtk struct. The GSList struct is used for each element in the singly-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. GSList *next; contains the link to the next element in the list.

struct GSList {}

Members

Variables

data
void* data;
Undocumented in source.
next
GSList* next;
Undocumented in source.

Meta