Libecoli 0.11.1
Extensible COmmand LIne library
Loading...
Searching...
No Matches
node_dynamic.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2017, Olivier MATZ <zer0@droids-corp.org>
3 */
4
12
13#pragma once
14
15struct ec_node;
16struct ec_pnode;
17
20typedef struct ec_node *(*ec_node_dynamic_build_t)(struct ec_pnode *pstate, void *opaque);
21
25struct ec_node *ec_node_dynamic(const char *id, ec_node_dynamic_build_t build, void *opaque);
26
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_node * ec_node(const char *typename, const char *id)
struct ec_pnode * ec_pnode(const struct ec_node *node)