aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-25 03:29:54 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-25 03:29:54 +0000
commit3481780eeaa6be9ed9dcf77d28cf5900bb854e7e (patch)
tree0dc6901ebe6bf7e70397e2eada70a451c3349aa2 /plugins
parent7e68a1e2cffb04817665f70be7e7a365ecadac48 (diff)
From Lars Roland: add "tvb_get_ntoh64()" to the list of routines
callable from plugins and the list of routines exported from libethereal.dll. Do the same for "tvb_get_letoh64()". svn path=/trunk/; revision=11825
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin_api_list.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/plugin_api_list.c b/plugins/plugin_api_list.c
index 5f7ca096f6..2b140e255b 100644
--- a/plugins/plugin_api_list.c
+++ b/plugins/plugin_api_list.c
@@ -480,3 +480,6 @@ int dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, int offset, int result_id, int prog_id, int vers_id,
int proc_id);
guint16 crc16_ccitt_tvb(tvbuff_t *tvb, unsigned int len);
+
+guint64 tvb_get_letoh64(tvbuff_t *tvb, gint offset);
+guint64 tvb_get_ntoh64(tvbuff_t *tvb, gint offset);