5bf68f762b
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.
13 lines
208 B
C
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
|