libamxo
4.3.4
Object Definition Language (ODL) parsing
|
Functions | |
int | amxo_resolver_ftab_add (amxo_parser_t *parser, const char *fn_name, amxo_fn_ptr_t fn) |
Adds a C function to the function table. More... | |
int | amxo_resolver_ftab_remove (amxo_parser_t *parser, const char *fn_name) |
Removes a function from the function table. More... | |
void | amxo_resolver_ftab_clear (amxo_parser_t *parser) |
Removes all functions from the function table. More... | |
int amxo_resolver_ftab_add | ( | amxo_parser_t * | parser, |
const char * | fn_name, | ||
amxo_fn_ptr_t | fn | ||
) |
Adds a C function to the function table.
Adds a C function to the function table resolver. The same function can be added multiple times using a different name. This makes it possible to use the same implementation for different data model methods.
Function names can be prepended with the full object path.
For an example see Function Table Resolver
parser | the odl parser instance |
fn_name | the data model method name |
fn | the function pointer (C implementation), use macro AMXO_FUNC |
Definition at line 169 of file amxo_ftab_resolver.c.
void amxo_resolver_ftab_clear | ( | amxo_parser_t * | parser | ) |
Removes all functions from the function table.
Removes all entries from the function table.
parser | the odl parser instance |
Definition at line 215 of file amxo_ftab_resolver.c.
int amxo_resolver_ftab_remove | ( | amxo_parser_t * | parser, |
const char * | fn_name | ||
) |
Removes a function from the function table.
Removes a single entry from the function table.
parser | the odl parser instance |
fn_name | the data model method name |
Definition at line 195 of file amxo_ftab_resolver.c.