Libecoli 0.5.0
Extensible COmmand LIne library
 
Loading...
Searching...
No Matches
ecoli_node_dynamic.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2017, Olivier MATZ <zer0@droids-corp.org>
3 */
4
9
10#ifndef ECOLI_NODE_DYNAMIC_
11#define ECOLI_NODE_DYNAMIC_
12
13struct ec_node;
14struct ec_pnode;
15
18typedef struct ec_node *(*ec_node_dynamic_build_t)(
19 struct ec_pnode *pstate, void *opaque);
20
24struct ec_node *ec_node_dynamic(const char *id, ec_node_dynamic_build_t build,
25 void *opaque);
26
27#endif
28
struct ec_node * ec_node(const char *typename, const char *id)
struct ec_node *(* ec_node_dynamic_build_t)(struct ec_pnode *pstate, void *opaque)
struct ec_node * ec_node_dynamic(const char *id, ec_node_dynamic_build_t build, void *opaque)
struct ec_pnode * ec_pnode(const struct ec_node *node)