diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-11-14 10:38:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-11-14 10:38:15 +0000 |
commit | e8bebbd7272d9936069a76c1d6d9e971097e1660 (patch) | |
tree | 45743c7f4c6d95d3c0de7b789344eea17c8a9abc /plugins/plugin_api.h | |
parent | 29a2973984112fe0171b3b9d4c1b52fe046e38be (diff) | |
download | wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.tar.gz wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.tar.bz2 wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.zip |
"plugin_api.c" needs to include <glib.h>, to define G_HAVE_GINT64 on
platforms that have "gint64".
Fix plugin-table lines for "dissector_delete()", "dissect_data()",
"prefs_register_module()", and "prefs_register_uint_preference()".
The MGCP dissector uses routines from GLib, so when building it as a DLL
for Windows, it has to be linked with "glib-XXX.lib".
svn path=/trunk/; revision=2643
Diffstat (limited to 'plugins/plugin_api.h')
-rw-r--r-- | plugins/plugin_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/plugin_api.h b/plugins/plugin_api.h index bcbb475826..c93d4606ef 100644 --- a/plugins/plugin_api.h +++ b/plugins/plugin_api.h @@ -1,7 +1,7 @@ /* plugin_api.h * Routines for Ethereal plugins. * - * $Id: plugin_api.h,v 1.10 2000/11/13 10:13:24 guy Exp $ + * $Id: plugin_api.h,v 1.11 2000/11/14 10:38:13 guy Exp $ * * Ethereal - Network traffic analyzer * Copyright 2000 by Gilbert Ramirez <gram@xiexie.org> @@ -57,7 +57,7 @@ #define heur_dissector_add (*p_heur_dissector_add) -#define dissect_data (*p_old_dissect_data) +#define dissect_data (*p_dissect_data) #define old_dissect_data (*p_old_dissect_data) #define proto_is_protocol_enabled (*p_proto_is_protocol_enabled) |