summaryrefslogtreecommitdiff
path: root/plugins/irda/irda-appl.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
committerMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
commit86d690880fb63891d223aa663ca5901c790b74af (patch)
tree47187c5da15e3c239e9bf40c79601c196ac0f114 /plugins/irda/irda-appl.h
parentd36b4c8525161167a32eac3b1feb98f8f5d6184e (diff)
downloadwireshark-86d690880fb63891d223aa663ca5901c790b74af.tar.gz
replace "unsigned" datatype with "guint". Some mpeg files needed "unsigned int" instead.
bugs 7825-7827 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7825) svn path=/trunk/; revision=46928
Diffstat (limited to 'plugins/irda/irda-appl.h')
-rw-r--r--plugins/irda/irda-appl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/irda/irda-appl.h b/plugins/irda/irda-appl.h
index a7aa63ae9b..354aba3c18 100644
--- a/plugins/irda/irda-appl.h
+++ b/plugins/irda/irda-appl.h
@@ -50,8 +50,8 @@ typedef enum {
DATA_PDU
} pdu_type_t;
-typedef gboolean (*ias_value_dissector_t)(tvbuff_t* tvb, unsigned offset, packet_info* pinfo, proto_tree* tree,
- unsigned list_index, guint8 attr_type);
+typedef gboolean (*ias_value_dissector_t)(tvbuff_t* tvb, guint offset, packet_info* pinfo, proto_tree* tree,
+ guint list_index, guint8 attr_type);
typedef const struct ias_attr_dissector {
const char* attr_name;
@@ -64,14 +64,14 @@ typedef const struct ias_class_dissector {
} ias_class_dissector_t;
-extern gboolean check_iap_octet_result(tvbuff_t* tvb, proto_tree* tree, unsigned offset,
+extern gboolean check_iap_octet_result(tvbuff_t* tvb, proto_tree* tree, guint offset,
const char* attr_name, guint8 attr_type);
-extern guint8 check_iap_lsap_result(tvbuff_t* tvb, proto_tree* tree, unsigned offset,
+extern guint8 check_iap_lsap_result(tvbuff_t* tvb, proto_tree* tree, guint offset,
const char* attr_name, guint8 attr_type);
extern void add_lmp_conversation(packet_info* pinfo, guint8 dlsap, gboolean ttp, dissector_t proto_dissector);
-extern unsigned dissect_param_tuple(tvbuff_t* tvb, proto_tree* tree, unsigned offset);
+extern unsigned dissect_param_tuple(tvbuff_t* tvb, proto_tree* tree, guint offset);
/*
* Protocol exports.