Returns a pointer to the next key-value pair of the data structure specified by the parameter
list.
TKVPair *TKVListNextPair( TKVList *list );
Name | Description |
---|---|
list | A pointer to the data structure that contains the key-value pair in question. |
A pointer to the next key-value pair of the data structure specified by the parameter
list.
(When the end of the list in question is reached, the function will return
NULL.
) Refer to the type
TKVPair.
See also TKVListInitScanLoop.