d1e355de2c
59 files changed, 1691 insertions(+), 607 deletions(-) Adding the beginings of ObConf. Adding a resistance-config plugin for ObConf. Creating an obparser library that obrender can use, the kernel can use, plugins can use, and ObConf and its plugins can use. (its just code for using libXml2)
19 lines
439 B
C
19 lines
439 B
C
#ifndef __plugins_interface_h
|
|
#define __plugins_interface_h
|
|
|
|
/* plugin_setup_config() */
|
|
typedef void (*PluginSetupConfig)(void);
|
|
|
|
/* plugin_startup() */
|
|
typedef void (*PluginStartup)(void);
|
|
|
|
/* plugin_shutdown() */
|
|
typedef void (*PluginShutdown)(void);
|
|
|
|
/* plugin_create() - for menu plugins only */
|
|
typedef void *(*PluginCreate)(/* TODO */);
|
|
|
|
/* plugin_destroy() - for menu plugins only */
|
|
typedef void (*PluginDestroy)(void *);
|
|
|
|
#endif
|