DBusList Struct Reference

struct DBusList

A node in a linked list.

DBusList is a circular list; that is, the tail of the list points back to the head of the list. The empty list is represented by a NULL pointer.

Public Attributes
void *data
DBusList *next
DBusList *prev

Member Data Documentation

void * data

void *data

Data stored at this element.

DBusList * next

DBusList *next

Next list node.

DBusList * prev

DBusList *prev

Previous list node.