Add files for swift over UDP.
[swifty.git] / src / libswift_udp / doc / wireshark-dissector / plugin.c
1 /*
2  * Do not modify this file.
3  *
4  * It is created automatically by Makefile or Makefile.nmake.
5  */
6
7 #ifdef HAVE_CONFIG_H
8 # include "config.h"
9 #endif
10
11 #include <gmodule.h>
12
13 #include "moduleinfo.h"
14
15 #ifndef ENABLE_STATIC
16 G_MODULE_EXPORT const gchar version[] = VERSION;
17
18 /* Start the functions we need for the plugin stuff */
19
20 G_MODULE_EXPORT void
21 plugin_register (void)
22 {
23   {extern void proto_register_swift (void); proto_register_swift ();}
24 }
25
26 G_MODULE_EXPORT void
27 plugin_reg_handoff(void)
28 {
29   {extern void proto_reg_handoff_swift (void); proto_reg_handoff_swift ();}
30 }
31 #endif