summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
blob: 3d7ad2a9be9233d2ef8f95a7633fc8c0c6e6907b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <gmodule.h>

#ifndef ENABLE_STATIC
G_MODULE_EXPORT const gchar version[] = "0.0.1";

extern void proto_register_isi(void);
extern void proto_reg_handoff_isi(void);

G_MODULE_EXPORT void plugin_register (void) {
	proto_register_isi();
}

G_MODULE_EXPORT void plugin_reg_handoff(void) {
	proto_reg_handoff_isi();
}
#endif