aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-11-06 08:44:05 +0000
committerGuy Harris <guy@alum.mit.edu>2000-11-06 08:44:05 +0000
commit82917a0672392db12f4cd72aacff29766d608c60 (patch)
tree702a56103fb19164480ee60685eeecb15aa59620
parent7aad3fa543ffac863f77c8e7648886b9804e3397 (diff)
"plugin_reg_handoff()" is a symbol in the plugin that Ethereal has to
access, so it must be declared with DLLEXPORT so that it's exported on Windows. svn path=/trunk/; revision=2572
-rw-r--r--plugins/gryphon/packet-gryphon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gryphon/packet-gryphon.c b/plugins/gryphon/packet-gryphon.c
index 2cb36e0b9e..994bd1314a 100644
--- a/plugins/gryphon/packet-gryphon.c
+++ b/plugins/gryphon/packet-gryphon.c
@@ -1,7 +1,7 @@
/* packet-gryphon.c
* Routines for Gryphon protocol packet disassembly
*
- * $Id: packet-gryphon.c,v 1.14 2000/11/05 09:09:29 guy Exp $
+ * $Id: packet-gryphon.c,v 1.15 2000/11/06 08:44:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Steve Limkemann <stevelim@dgtech.com>
@@ -1713,7 +1713,7 @@ plugin_init(plugin_address_table_t *pat)
}
}
-void
+DLLEXPORT void
plugin_reg_handoff(void)
{
old_dissector_add("tcp.port", 7000, &dissect_gryphon);