From 8588f347d9f9e79ee7ee29529b5b8a000f14bdee Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Wed, 29 Dec 2010 21:42:55 +0100 Subject: import the ISI wireshark plugin from libisi --- src/plugin.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/plugin.c (limited to 'src/plugin.c') diff --git a/src/plugin.c b/src/plugin.c new file mode 100644 index 0000000..3d7ad2a --- /dev/null +++ b/src/plugin.c @@ -0,0 +1,16 @@ +#include + +#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 -- cgit v1.2.3