Contents Previous Next

mxml_index_s


Description

An XML node index.

Definition

struct mxml_index_s
{
  int alloc_nodes;
  char * attr;
  int cur_node;
  mxml_node_t ** nodes;
  int num_nodes;
};

Members

NameDescription
alloc_nodesAllocated nodes in index
attrAttribute used for indexing or NULL
cur_nodeCurrent node
nodesNode array
num_nodesNumber of nodes in index

Contents Previous Next