4ed3fb8915
start a focus plugin.
10 lines
160 B
C
10 lines
160 B
C
#ifndef __plugin_h
|
|
#define __plugin_h
|
|
|
|
void plugin_startup();
|
|
void plugin_shutdown();
|
|
|
|
gboolean plugin_open(char *name);
|
|
void plugin_close(char *name);
|
|
|
|
#endif
|