diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
commit | c4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch) | |
tree | 93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-mpeg-sect.h | |
parent | Adding upstream version 4.2.6. (diff) | |
download | wireshark-upstream.tar.xz wireshark-upstream.zip |
Adding upstream version 4.4.0.upstream/4.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-mpeg-sect.h')
-rw-r--r-- | epan/dissectors/packet-mpeg-sect.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/epan/dissectors/packet-mpeg-sect.h b/epan/dissectors/packet-mpeg-sect.h index 2ace6937..a44b3697 100644 --- a/epan/dissectors/packet-mpeg-sect.h +++ b/epan/dissectors/packet-mpeg-sect.h @@ -63,30 +63,30 @@ /* * Used to read a date provided in MJD format into a utc_time structure */ -extern gint -packet_mpeg_sect_mjd_to_utc_time(tvbuff_t *tvb, gint offset, nstime_t *utc_time); +extern int +packet_mpeg_sect_mjd_to_utc_time(tvbuff_t *tvb, int offset, nstime_t *utc_time); /* * Used to process the 'standard' mpeg section header that is described below * and populate the data into the tree */ -extern guint -packet_mpeg_sect_header(tvbuff_t *tvb, guint offset, - proto_tree *tree, guint *sect_len, gboolean *ssi); +extern unsigned +packet_mpeg_sect_header(tvbuff_t *tvb, unsigned offset, + proto_tree *tree, unsigned *sect_len, bool *ssi); /* * Used to return all the values & items for 'strict' processing of the * sub-dissectors that make use of this dissector */ -extern guint -packet_mpeg_sect_header_extra(tvbuff_t *tvb, guint offset, proto_tree *tree, - guint *sect_len, guint *reserved, gboolean *ssi, +extern unsigned +packet_mpeg_sect_header_extra(tvbuff_t *tvb, unsigned offset, proto_tree *tree, + unsigned *sect_len, unsigned *reserved, bool *ssi, proto_item **items); /* - * Used to process the mpeg CRC information & report erorrs found with it. + * Used to process the mpeg CRC information & report errors found with it. */ -extern guint +extern unsigned packet_mpeg_sect_crc(tvbuff_t *tvb, packet_info *pinfo, - proto_tree *tree, guint start, guint end); + proto_tree *tree, unsigned start, unsigned end); #endif |