aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-05-01 21:10:43 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-05-01 21:10:43 +0000
commit88b254c8c5c5a1a27e89eca400b83c8c748e0475 (patch)
treed2a3e452bd0dbfb24c29bc8a4301e5a873d3c7e8 /epan/plugins.c
parent28c5ec56b8ba4827849c5b20c39daf543d0ebb68 (diff)
From Matthijs Melchior: don't export functions also implemented as
macros, and do export "except_pop()" and "except_setup_try()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7628 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 86d5201855..a90f8cb78c 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.69 2003/05/01 18:05:27 guy Exp $
+ * $Id: plugins.c,v 1.70 2003/05/01 21:10:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -527,14 +527,12 @@ init_plugins(const char *plugin_dir)
patable.p_except_throwd = except_throwd;
patable.p_except_throwf = except_throwf;
patable.p_except_unhandled_catcher = except_unhandled_catcher;
- patable.p_except_code = except_code;
- patable.p_except_group = except_group;
- patable.p_except_message = except_message;
- patable.p_except_data = except_data;
patable.p_except_take_data = except_take_data;
patable.p_except_set_allocator = except_set_allocator;
patable.p_except_alloc = except_alloc;
patable.p_except_free = except_free;
+ patable.p_except_pop = except_pop;
+ patable.p_except_setup_try = except_setup_try;
#endif
#ifdef WIN32