summaryrefslogtreecommitdiff
path: root/tools/make-dissector-reg
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make-dissector-reg')
-rwxr-xr-xtools/make-dissector-reg9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/make-dissector-reg b/tools/make-dissector-reg
index 62bee69432..a4552884cf 100755
--- a/tools/make-dissector-reg
+++ b/tools/make-dissector-reg
@@ -42,13 +42,16 @@ then
#include <gmodule.h>
#include "moduleinfo.h"
+/* plugins are DLLs */
+#define WS_BUILD_DLL
+#include "ws_symbol_export.h"
#ifndef ENABLE_STATIC
-G_MODULE_EXPORT const gchar version[] = VERSION;
+WS_DLL_PUBLIC_NOEXTERN const gchar version[] = VERSION;
/* Start the functions we need for the plugin stuff */
-G_MODULE_EXPORT void
+WS_DLL_PUBLIC_NOEXTERN void
plugin_register (void)
{
EOF
@@ -116,7 +119,7 @@ echo '}' >>${outfile}-tmp
if [ "$registertype" = plugin ]
then
cat <<"EOF" >>${outfile}-tmp
-G_MODULE_EXPORT void
+WS_DLL_PUBLIC_NOEXTERN void
plugin_reg_handoff(void)
{
EOF