#include <nnsys/fnd.h>
void NNS_FndInsertListObject( NNSFndList* list, void* target, void* object );
list | Pointer to the list structure |
target |
Pointer to the object connected in the target position in which you wish to insert. |
object | Pointer to the object to be connected to the list |
None.
This function inserts an object designated with object
in front of the object designated with target
. If target
is designated as NULL
, the object is added at the end of the list.
NNS_FndAppendListObject, NNS_FndPrependListObject, NNS_FndRemoveListObject
2004/02/02 Initial version.
CONFIDENTIAL