rename structures and functions
[protos/libecoli.git] / include / ecoli_node_dynamic.h
index 65d3085..fd98971 100644 (file)
 #define ECOLI_NODE_DYNAMIC_
 
 struct ec_node;
-struct ec_parse;
+struct ec_pnode;
 
 /* callback invoked by parse() or complete() to build the dynamic node
  * the behavior of the node can depend on what is already parsed */
 typedef struct ec_node *(*ec_node_dynamic_build_t)(
-       struct ec_parse *state, void *opaque);
+       struct ec_pnode *state, void *opaque);
 
 struct ec_node *ec_node_dynamic(const char *id, ec_node_dynamic_build_t build,
                                void *opaque);