aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-04-25 23:29:58 -0400
committerMichael Mann <mmann78@netscape.net>2017-04-26 23:46:32 +0000
commit2c921eb83c2e4a959080461777fab3397c5abac0 (patch)
treef3f71d859232bacd3e372221ee86370bd96d0f5b /epan/proto.h
parent24c93965593b535b135e1befff5cd0c32be6f28d (diff)
Add proto_tree_add_item_ret_uint64
Just like proto_tree_add_item_ret_uint, but with 64-bit support Change-Id: Ie0cbfda9e63bf21e85df2d674e391a6c0abe92f7 Reviewed-on: https://code.wireshark.org/review/21355 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 982ae22fc7..e46c8986d2 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -1126,6 +1126,10 @@ WS_DLL_PUBLIC proto_item *
proto_tree_add_item_ret_uint(proto_tree *tree, int hfindex, tvbuff_t *tvb,
const gint start, gint length, const guint encoding, guint32 *retval);
+WS_DLL_PUBLIC proto_item *
+proto_tree_add_item_ret_uint64(proto_tree *tree, int hfindex, tvbuff_t *tvb,
+ const gint start, gint length, const guint encoding, guint64 *retval);
+
/** Add an string item to a proto_tree, using the text label registered to
that item.