Important: The information in this document is obsolete and should not be used for new development.
OTIsInList
Determines whether the specified link is in the specified list.C INTERFACE
Boolean OTIsInList (OTList* list, OTLink* link)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
list
- A pointer to a FIFO list.
link
- A pointer to a link structure.
- function result
- Returns
true
if the specified link is in the FIFO list.DISCUSSION
TheOTIsInList
function determines whether a link is in a FIFO list.Use the
OTRemoveLink
to remove a link from a FIFO list.Use the
OTFindLink
function or theOTGetIndexedLink
function to find a link in a FIFO list.Use the
OTFindAndRemoveLink
function to find and remove a link in a FIFO list.