Important: The information in this document is obsolete and should not be used for new development.
The Linked List Structure
All of Open Transport's list utilities use the linked list structure, which may be embedded in any data structure that you want to use in an Open Transport list. A linked list structure is defined by the OTLink data type.
struct OTLink { OTLink* fNext; }; typedef struct OTLink OTLink;
Field Description
fNext
- A pointer to the next entry in the linked list.