Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Networking With Open Transport / Part 2 - Open Transport Reference
Chapter 27 - Utilities Reference / Constants and Data Types


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.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
15 JAN 1998