An XML node index.
struct mxml_index_s
{
int alloc_nodes;
char * attr;
int cur_node;
mxml_node_t ** nodes;
int num_nodes;
};
| Name | Description |
|---|---|
| alloc_nodes | Allocated nodes in index |
| attr | Attribute used for indexing or NULL |
| cur_node | Current node |
| nodes | Node array |
| num_nodes | Number of nodes in index |