Libecoli 0.10.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
9
10#pragma once
11
12struct ec_node;
13struct ec_pnode;
14
17typedef struct ec_node *(*ec_node_dynamic_build_t)(struct ec_pnode *pstate, void *opaque);
18
22struct ec_node *ec_node_dynamic(const char *id, ec_node_dynamic_build_t build, void *opaque);
23
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)