]> icculus.org git repositories - mikachu/openbox.git/blob - plugins/interface.h
change the menu plugin interface, no need for the create/destroy functions any more.
[mikachu/openbox.git] / plugins / interface.h
1 #ifndef __plugins_interface_h
2 #define __plugins_interface_h
3
4 struct _ObParseInst;
5
6 /* plugin_setup_config() */
7 typedef void (*PluginSetupConfig)(struct _ObParseInst *i);
8
9 /* plugin_startup() */
10 typedef void (*PluginStartup)(void);
11
12 /* plugin_shutdown() */
13 typedef void (*PluginShutdown)(void);
14
15 #endif