aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.h
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-01 21:48:17 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-01 21:48:17 +0000
commit6cd31e064aef19e8084a1f58e450f569ab101eed (patch)
treec4da1f0931d1db98bb5739a82e5942139a36cd1d /epan/plugins.h
parentdbfa7bf514f1b91a8f65906d3d16a2833b4280a4 (diff)
Show the plugin paths in Help→About→Plugins. Add a "-G plugins" option
to TShark which dumps a list of plugins. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37512 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/plugins.h')
-rw-r--r--epan/plugins.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/plugins.h b/epan/plugins.h
index 9fed240062..e081a3e965 100644
--- a/epan/plugins.h
+++ b/epan/plugins.h
@@ -54,10 +54,12 @@ extern void register_all_plugin_handoffs(void);
extern void register_all_plugin_tap_listeners(void);
extern void register_all_wiretap_modules(void);
extern void register_all_codecs(void);
+extern void plugins_dump_all(void);
typedef struct _wslua_plugin {
gchar *name; /**< plugin name */
gchar *version; /**< plugin version */
+ gchar *filename; /**< plugin filename */
struct _wslua_plugin *next;
} wslua_plugin;