summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-09 20:05:10 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-09 23:09:26 +0000
commit5e944ee2a86145bf42db1386e4b497facfd3e0b6 (patch)
tree727dc984d5f5b9ed222acaa78530e2eb13e4cf1e /plugins
parent8bab958e195a071bc5e5c016c631d6485e23fc2e (diff)
downloadwireshark-5e944ee2a86145bf42db1386e4b497facfd3e0b6.tar.gz
mate (grammar): fix no previous prototype for function 'MateParser/Alloc/Free' [-Wmissing-prototypes]
Change-Id: I87ff11b7c04cb3b6963d4c8c16df2c3d60a0aec8 Reviewed-on: https://code.wireshark.org/review/21574 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mate/mate.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mate/mate.h b/plugins/mate/mate.h
index c9f7efdc76..191c6600fe 100644
--- a/plugins/mate/mate.h
+++ b/plugins/mate/mate.h
@@ -380,4 +380,10 @@ extern gchar* add_ranges(gchar* range, GPtrArray* range_ptr_arr);
/* from mate_parser.l */
extern gboolean mate_load_config(const gchar* filename, mate_config* mc);
+/* Constructor/Destructor prototypes for Lemon Parser */
+void *MateParserAlloc(void* (*)(gsize));
+
+void MateParserFree(void*, void (*)(void *));
+void MateParser(void*, int, gchar*, mate_config*);
+
#endif