You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klish/clish/plugin/private.h

33 lines
1.0 KiB

/*
* plugin private.h
*/
#include "lub/list.h"
#include "clish/plugin.h"
/*---------------------------------------------------------
* PRIVATE TYPES
*--------------------------------------------------------- */
struct clish_sym_s {
char *name; /* Symbol name */
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() */
};