X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fplugin.h;h=6d14c64c44986703faabbbbdf5dd6da375220a4c;hb=c0c06e3828981cacc96b27a87d7803f603241d15;hp=38da20867f36d312489ebf86044a83133ce1aad5;hpb=22ff8c587d815c021cad13f46094a31cc79243cf;p=chaz%2Fopenbox diff --git a/openbox/plugin.h b/openbox/plugin.h index 38da2086..6d14c64c 100644 --- a/openbox/plugin.h +++ b/openbox/plugin.h @@ -1,16 +1,18 @@ #ifndef __plugin_h #define __plugin_h +struct _ObParseInst; + void plugin_startup(); void plugin_shutdown(); -void plugin_loadall(); +void plugin_loadall(struct _ObParseInst *i); void plugin_startall(); /* default plugin */ -gboolean plugin_open(char *name); +gboolean plugin_open(char *name, struct _ObParseInst *i); /* load a plugin, but don't warn about reopens. for menus */ -gboolean plugin_open_reopen(char *name); +gboolean plugin_open_reopen(char *name, struct _ObParseInst *i); void plugin_close(char *name); /* call plugin's generic constructor */