Contents Previous Next

mxmlWalkNext()

Description

Walk to the next logical node in the tree.

The descend argument controls whether the first child is considered to be the next node. The top node argument constrains the walk to the node's children.

Syntax

mxml_node_t *
mxmlWalkNext( mxml_node_t * node, mxml_node_t * top, int descend);

Arguments

NameDescription
nodeCurrent node
topTop node
descendDescend into tree - MXML_DESCEND, MXML_NO_DESCEND, or MXML_DESCEND_FIRST

Returns

Next node or NULL


Contents Previous Next