#include <nnsys/fnd.h>
void* NNS_FndGetNthListObject( NNSFndList* list, u16 index );
| list | Pointer to the list structure |
| index | Object index |
Returns the pointer to the nth object designated with index. Returns NULL if no object is found.
Returns a pointer to the nth object from the top of the list specified by index. Returns NULL if a value greater than the number of objects in the list is designated in index. With this function, a process can be conducted to follow the objects in order from the top of the list, so the more objects connected at the endof the list, the longer it will take to process.
NNS_FndGetNextListObject, NNS_FndGetPrevListObject
10/21/2004 Corrected "See Also" section
02/02/2004 Initial version