aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-10-26 10:27:16 +0000
committerGuy Harris <guy@alum.mit.edu>2006-10-26 10:27:16 +0000
commit6c0027f4a9834b0bc5a6f4df0009dfe9d0519239 (patch)
tree7c9ab88b2f2e39806e8aa21a245c011a16553858 /doc
parent3d9709e6f35f4a0bc15200b40cf548002ec7ef9c (diff)
Mention the 64-bit-integer accessors.
svn path=/trunk/; revision=19703
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer13
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/README.developer b/doc/README.developer
index f9b0739b54..1cc73f4b46 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -962,12 +962,13 @@ Single-byte accessor:
guint8 tvb_get_guint8(tvbuff_t*, gint offset);
-Network-to-host-order accessors for 16-bit integers (guint16), 32-bit
-integers (guint32), and 24-bit integers:
+Network-to-host-order accessors for 16-bit integers (guint16), 24-bit
+integers, 32-bit integers (guint32), and 64-bit integers (guint64):
guint16 tvb_get_ntohs(tvbuff_t*, gint offset);
-guint32 tvb_get_ntohl(tvbuff_t*, gint offset);
guint32 tvb_get_ntoh24(tvbuff_t*, gint offset);
+guint32 tvb_get_ntohl(tvbuff_t*, gint offset);
+guint64 tvb_get_ntoh64(tvbuff_t*, gint offset);
Network-to-host-order accessors for single-precision and
double-precision IEEE floating-point numbers:
@@ -976,11 +977,13 @@ gfloat tvb_get_ntohieee_float(tvbuff_t*, gint offset);
gdouble tvb_get_ntohieee_double(tvbuff_t*, gint offset);
Little-Endian-to-host-order accessors for 16-bit integers (guint16),
-32-bit integers (guint32), and 24-bit integers:
+24-bit integers, 32-bit integers (guint32), and 64-bit integers
+(guint64):
guint16 tvb_get_letohs(tvbuff_t*, gint offset);
-guint32 tvb_get_letohl(tvbuff_t*, gint offset);
guint32 tvb_get_letoh24(tvbuff_t*, gint offset);
+guint32 tvb_get_letohl(tvbuff_t*, gint offset);
+guint64 tvb_get_letoh64(tvbuff_t*, gint offset);
Little-Endian-to-host-order accessors for single-precision and
double-precision IEEE floating-point numbers: