1234567891011121314151617181920212223242526272829303132 |
- /*
- * plugin private.h
- */
- #include "lub/list.h"
- #include "clish/plugin.h"
- /*---------------------------------------------------------
- * PRIVATE TYPES
- *--------------------------------------------------------- */
- struct clish_sym_s {
- char *name; /* Symbol name */
- const void *func; /* Function address */
- int type; /* Function type */
- clish_sym_api_e api; /* Function API */
- bool_t permanent; /* If permanent the dry-run can't switch it off */
- clish_plugin_t *plugin; /* Parent plugin */
- };
- struct clish_plugin_s {
- char *name; /* Plugin name. */
- char *alias; /* User defined plugin name. Can be used in builtin ref. */
- char *file; /* Shared object file name. */
- bool_t builtin_flag; /* If plugin is built into binary */
- char *conf; /* The content of <PLUGIN>...</PLUGIN> */
- lub_list_t *syms; /* List of plugin symbols */
- void *dlhan; /* Handler of dlopen() */
- clish_plugin_init_t *init; /* Init function (constructor) != NULL */
- clish_plugin_fini_t *fini; /* Fini function (destructor) */
- bool_t rtld_global; /* RTLD_GLOBAL flag for dlopen() */
- };
|