X-Git-Url: http://git.droids-corp.org/?p=protos%2Flibecoli.git;a=blobdiff_plain;f=include%2Fecoli_node_dynamic.h;h=fd989719a64bc33c5fc69f034868b08e15fcb1a8;hp=65d3085b1d1519882bf32d6d5e3f002c8a1bc715;hb=984760622f2c8472fd2667e24bcceb543bdb1aff;hpb=ae32f7f2fd1bc44a5388e1984f7c96bc29d3fdc2 diff --git a/include/ecoli_node_dynamic.h b/include/ecoli_node_dynamic.h index 65d3085..fd98971 100644 --- a/include/ecoli_node_dynamic.h +++ b/include/ecoli_node_dynamic.h @@ -11,12 +11,12 @@ #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);