Microsoft Windows CE 3.0  

CGenericList::AddAfter

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Inserts a node or list of nodes after the specified node.

POSITION AddAfter(
POSITION
p, 
OBJECT *
pObj
);
BOOLAddAfter( 
POSITION
pos
,
CGenericList<OBJECT>
*
pList);

Parameters

pos
Position after which to add the node or list of nodes.
pObj
Pointer to the object to add.
pList
Pointer to the list of objects to add.

Return Values

Returns the position of the inserted object in the case of single-object insertion. For list insertion, returns TRUE if successful; otherwise, returns FALSE.

Remarks

This member function calls the CBaseList::AddAftermember function when passed a list of nodes. CGenericList::AddAftercalls the CBaseList::AddAfterImember function when passed a single node.