ListInsertAfter |
| 01 | Inserts a list entry into a list after a certain entry. |
| 02 |
void ListInsertAfter(ListEntry *pBefore, ListEntry *pNew) |
| 03 |
Parameters:
|
| 04 | pBefore needs to be a valid list entry (referencing proper list entries of a list). pNew will be placed between pBefore and pBefore->mpNext. |
| 05 | The member values of pNew before this function call are ignored. |
| 06 |
Reference: SemysList.h Implementation: Semys Library See Also: List Sub-System, ListPushBack(), ListInsertBefore() |
Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details. |