openbox/openbox/plugin.h
Dana Jansens 5bf68f762b make the openbox engine use the new config shit instead of the themerc shit.
order te startup so that plugins can set up their config shit before parsing the config, then the config is parsed, engine is loaded, and finally the plugins are officially started.
2003-03-22 23:26:43 +00:00

13 lines
208 B
C

#ifndef __plugin_h
#define __plugin_h
void plugin_startup();
void plugin_shutdown();
void plugin_loadall();
void plugin_startall();
gboolean plugin_open(char *name);
void plugin_close(char *name);
#endif