2003-03-18 03:11:55 +00:00
|
|
|
#ifndef __plugin_h
|
|
|
|
#define __plugin_h
|
|
|
|
|
2003-08-12 19:18:21 +00:00
|
|
|
struct _ObParseInst;
|
|
|
|
|
2003-03-18 03:11:55 +00:00
|
|
|
void plugin_startup();
|
|
|
|
void plugin_shutdown();
|
|
|
|
|
2003-08-12 19:18:21 +00:00
|
|
|
void plugin_loadall(struct _ObParseInst *i);
|
2003-03-22 23:26:43 +00:00
|
|
|
void plugin_startall();
|
|
|
|
|
2003-05-09 23:15:28 +00:00
|
|
|
/* default plugin */
|
|
|
|
/* load a plugin, but don't warn about reopens. for menus */
|
2003-08-28 06:32:27 +00:00
|
|
|
gboolean plugin_open(gchar *name, struct _ObParseInst *i);
|
|
|
|
void plugin_start(gchar *name);
|
2003-03-18 03:11:55 +00:00
|
|
|
|
|
|
|
#endif
|