aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/artnet/packet-artnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/artnet/packet-artnet.c')
-rw-r--r--plugins/artnet/packet-artnet.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/plugins/artnet/packet-artnet.c b/plugins/artnet/packet-artnet.c
index 058c02513a..3a7a4ec394 100644
--- a/plugins/artnet/packet-artnet.c
+++ b/plugins/artnet/packet-artnet.c
@@ -30,11 +30,8 @@
#include "config.h"
#endif
-#include "moduleinfo.h"
-
#include <stdio.h>
#include <stdlib.h>
-#include <gmodule.h>
#include <ctype.h>
#include <time.h>
#include <string.h>
@@ -43,12 +40,6 @@
#include <epan/prefs.h>
#include <epan/strutil.h>
-/* Define version if we are not building ethereal statically */
-
-#ifndef ENABLE_STATIC
-G_MODULE_EXPORT const gchar version[] = VERSION;
-#endif
-
/*
* See
*
@@ -2716,26 +2707,3 @@ proto_reg_handoff_artnet(void) {
dissector_add("udp.port",global_udp_port_artnet,artnet_handle);
}
-
-/* Start the functions we need for the plugin stuff */
-
-#ifndef ENABLE_STATIC
-
-G_MODULE_EXPORT void
-plugin_register(void)
-{
- /* register the new protocol, protocol fields, and subtrees */
- if (proto_artnet == -1) { /* execute protocol initialization only once */
- proto_register_artnet();
- }
-}
-
-G_MODULE_EXPORT void
-plugin_reg_handoff(void){
- proto_reg_handoff_artnet();
-}
-
-#endif
-
-/* End the functions we need for plugin stuff */
-