OSRTDListNode Struct Reference
[Doubly-Linked List Utility Functions]
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. | |
struct OSRTDListNode * | next |
Pointer to next node in list. | |
struct OSRTDListNode * | prev |
Pointer to previous node in list. |
Detailed Description
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.
Member Data Documentation
void* OSRTDListNode::data |
struct OSRTDListNode* OSRTDListNode::next [read] |
struct OSRTDListNode* OSRTDListNode::prev [read] |
The documentation for this struct was generated from the following file: