blob: 83eb97a2b92c22624bef39f4b045f51b7b3cb60f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __plugins_interface_h
#define __plugins_interface_h
struct _ObParseInst;
/* plugin_setup_config() */
typedef void (*PluginSetupConfig)(struct _ObParseInst *i);
/* plugin_startup() */
typedef void (*PluginStartup)(void);
/* plugin_shutdown() */
typedef void (*PluginShutdown)(void);
#endif
|