Searched defs:UPlugData (Results 1 – 2 of 2) sorted by relevance
37 struct UPlugData { struct38 UPlugEntrypoint *entrypoint; /**< plugin entrypoint */39 uint32_t structSize; /**< initialized to the size of this structure */40 uint32_t token; /**< must be U_PLUG_TOKEN */41 void *lib; /**< plugin library, or NULL */42 char libName[UPLUG_NAME_MAX]; /**< library name */43 char sym[UPLUG_NAME_MAX]; /**< plugin symbol, or NULL */44 char config[UPLUG_NAME_MAX]; /**< configuration data */45 void *context; /**< user context data */46 char name[UPLUG_NAME_MAX]; /**< name of plugin */[all …]
121 typedef struct UPlugData UPlugData; typedef