NNS_FND_INIT_LIST

C Specification

#include <nnsys/fnd.h>
void NNS_FND_INIT_LIST( NNSFndList* list, structName, linkName );

Arguments

list Pointer to the list structure
structName Structure name to link to.
linkName NNSFndlink-type member variable name.

Return Values

None.

Description

This macro initializes the list structure. Actual initialization is carried out by the NNS_FndInitList() function. Searches for the offset with this macro using the offsetof macro defined by stddef.h from the designated structure name and the NNSFndlink-type variable name, then passes it to the NNS_FndInitList function.

See Also

NNS_FndInitList

Revision History

04/16/2004 Function and title names were incorrect. Revised.
02/02/2004 Initial version