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