aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-09-25 14:33:54 -0700
committerGerald Combs <gerald@wireshark.org>2015-09-27 16:19:05 +0000
commit6d10efc6dd66c70110581b8c49cc3da0f0a72a25 (patch)
tree6f922060b2096a8747763eaecb13522b918d109e /epan/packet.h
parentd4b3a96830d580572ac42e7d03b78c47fe34bbf2 (diff)
Qt: Add the Dissector Tables dialog.
Add the "Internals" menu under the View menu instead of at the top level for now at least. Add the Dissector Tables dialog there. Change-Id: Ieb23b0015591bac196e4ef94e3443832288333f9 Reviewed-on: https://code.wireshark.org/review/10654 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/packet.h b/epan/packet.h
index cd81bc2ddb..cfd3d8c66e 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -378,7 +378,7 @@ struct heur_dissector_list;
typedef struct heur_dissector_list *heur_dissector_list_t;
-typedef struct {
+typedef struct heur_dtbl_entry {
heur_dissector_t dissector;
protocol_t *protocol; /* this entry's protocol */
gchar *list_name; /* the list name this entry is in the list of */
@@ -395,9 +395,9 @@ typedef struct {
WS_DLL_PUBLIC heur_dissector_list_t register_heur_dissector_list(const char *name);
typedef void (*DATFunc_heur) (const gchar *table_name,
- heur_dtbl_entry_t *entry, gpointer user_data);
-typedef void (*DATFunc_heur_table) (const gchar *table_name,
- heur_dissector_list_t *table, gpointer user_data);
+ struct heur_dtbl_entry *entry, gpointer user_data);
+typedef void (*DATFunc_heur_table) (const char *table_name,
+ struct heur_dissector_list *table, gpointer user_data);
/** Iterate over heuristic dissectors in a table.
*