ffba11aeb0
menu fixups move enabled into the 'normal menu item' specific data stuff
17 lines
360 B
C
17 lines
360 B
C
#ifndef __plugin_h
|
|
#define __plugin_h
|
|
|
|
struct _ObParseInst;
|
|
|
|
void plugin_startup();
|
|
void plugin_shutdown();
|
|
|
|
void plugin_loadall(struct _ObParseInst *i);
|
|
void plugin_startall();
|
|
|
|
/* default plugin */
|
|
/* load a plugin, but don't warn about reopens. for menus */
|
|
gboolean plugin_open(gchar *name, struct _ObParseInst *i);
|
|
void plugin_start(gchar *name);
|
|
|
|
#endif
|