libUPnP 1.14.19
|
Functions | |
void | ixmlNodeList_init (IXML_NodeList *nList) |
Initializes a nodelist. | |
IXML_Node * | ixmlNodeList_item (IXML_NodeList *nList, unsigned long index) |
Retrieves a Node from a NodeList specified by a numerical index. | |
int | ixmlNodeList_addToNodeList (IXML_NodeList **nList, IXML_Node *add) |
Add a node to nodelist. | |
unsigned long | ixmlNodeList_length (IXML_NodeList *nList) |
Returns the number of Nodes in a NodeList. | |
void | ixmlNodeList_free (IXML_NodeList *nList) |
Frees a NodeList object. | |
int ixmlNodeList_addToNodeList | ( | IXML_NodeList ** | nList, |
IXML_Node * | add | ||
) |
Add a node to nodelist.
[in] | nList | The pointer to the nodelist. |
[in] | add | The node to add. |
References ixmlNodeList_init().
Referenced by ixmlNode_getChildNodes(), ixmlNode_getElementsByTagName(), ixmlNode_getElementsByTagNameNS(), ixmlNode_getElementsByTagNameNSRecursive(), and ixmlNode_getElementsByTagNameRecursive().
void ixmlNodeList_init | ( | IXML_NodeList * | nList | ) |
Initializes a nodelist.
[in,out] | nList | The NodeList to initialize. |
Referenced by ixmlNode_getChildNodes(), and ixmlNodeList_addToNodeList().