Microsoft Windows CE 3.0  

CGenericList::AddHead

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 at the front of the list.

POSITION AddHead(
OBJECT *
pObj
);
BOOL AddHead(
CGenericList<OBJECT>
*
pList
);

Parameters

pObj
Pointer to the object to add.
pList
Pointer to the list of objects to add.

Return Values

Returns the new head position, or NULL if unsuccessful in the case of single-node additions. For list insertions, returns TRUE if successful; otherwise, returns FALSE.

Remarks

This member function calls the CBaseList::AddHeadmember function when passed a list of nodes. CGenericList::AddHeadcalls the CBaseList::AddHeadImember function when passed a single node.