openbox/plugins/interface.h
Dana Jansens 615cbd9607 change the menu plugin interface, no need for the create/destroy functions any more.
redo the client-menu plugin to work with the new menu api
2003-08-28 05:44:13 +00:00

15 lines
302 B
C

#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