Function
GLibTraverseFunc
Description [src]
Specifies the type of function passed to g_tree_traverse(). It is
passed the key and value of each node, together with the user_data
parameter passed to g_tree_traverse(). If the function returns
TRUE, the traversal is stopped.
Parameters
- key
- 
            Type: gpointerA key of a GTreenode.The argument can be NULL.The data is owned by the caller of the function. 
- value
- 
            Type: gpointerThe value corresponding to the key. The argument can be NULL.The data is owned by the caller of the function. 
- data
- 
            Type: gpointerUser data passed to g_tree_traverse(). The argument can be NULL.The data is owned by the caller of the function.