XBinder
Version 2.9.x
|
This structure is used to hold a single data item within the list. More...
#include <rtxDList.h>
Public Attributes | |
void * | data |
Pointer to list data item. More... | |
struct OSRTDListNode * | next |
Pointer to next node in list. More... | |
struct OSRTDListNode * | prev |
Pointer to previous node in list. More... | |
This structure is used to hold a single data item within the list.
It contains a void pointer to point at any type of data item and forward and backward pointers to the next and previous entries in the list.
Definition at line 52 of file rtxDList.h.
void* OSRTDListNode::data |
Pointer to list data item.
Definition at line 53 of file rtxDList.h.
struct OSRTDListNode* OSRTDListNode::next |
Pointer to next node in list.
Definition at line 54 of file rtxDList.h.
struct OSRTDListNode* OSRTDListNode::prev |
Pointer to previous node in list.
Definition at line 55 of file rtxDList.h.