20#ifndef _SCI_MODULES_H_ 
   21#define _SCI_MODULES_H_ 
   32#define SCI_CONF_MODULES_GROUP          "Modules" 
   35#define SCI_CONF_MODULES_PATH           "ModulePath" 
   38#define SCI_CONF_MODULES_MODULES        "Modules" 
   41#define DEFAULT_SCI_MODULE_PATH         "/usr/lib/scipaper/modules" 
   66bool sci_modules_init(
void);
 
   67void sci_modules_exit(
void);
 
void sci_module_exit_fn(void *data)
Modules must export a symbol of this type called sci_module_exit, it will be called just before the m...
Definition sci-modules.h:62
const char * sci_module_init_fn(void **data)
Modules must export a symbol of this type called sci_module_init, it will be called when the module i...
Definition sci-modules.h:54