aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_table.h
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-16 02:43:53 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-16 02:43:53 +0000
commit470f59a0b2edd8f3be000c18fbefcfd2ccac61d1 (patch)
tree3cc4875906ba99b1af8266e83755b454f348e127 /plugins/plugin_table.h
parent908a799cdc5f0fd286b0878919979dd39fd50642 (diff)
Fix a return type mismatch for get_CDR_wchar and a parameter type mismatch
for get_CDR_octet_seq. The one for get_CDR_octet_seq was preventing compilation under MSVC++. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5484 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/plugin_table.h')
-rw-r--r--plugins/plugin_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/plugin_table.h b/plugins/plugin_table.h
index 9175f96d9b..a9f262f88f 100644
--- a/plugins/plugin_table.h
+++ b/plugins/plugin_table.h
@@ -1,7 +1,7 @@
/* plugin_table.h
* Table of exported addresses for Ethereal plugins.
*
- * $Id: plugin_table.h,v 1.48 2002/05/13 21:18:26 guy Exp $
+ * $Id: plugin_table.h,v 1.49 2002/05/16 02:43:53 gerald Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -210,7 +210,7 @@ typedef gint32 (*addr_get_CDR_long)(tvbuff_t *, int *, gboolean, int);
typedef void (*addr_get_CDR_object)(tvbuff_t *, packet_info *, proto_tree *,
int *, gboolean, int);
typedef guint8 (*addr_get_CDR_octet)(tvbuff_t *, int *);
-typedef void (*addr_get_CDR_octet_seq)(tvbuff_t *, gchar **, int *, int);
+typedef void (*addr_get_CDR_octet_seq)(tvbuff_t *, gchar **, int *, guint32);
typedef gint16 (*addr_get_CDR_short)(tvbuff_t *, int *, gboolean, int);
typedef guint32 (*addr_get_CDR_string)(tvbuff_t *, gchar **, int *, gboolean,
int);
@@ -218,7 +218,7 @@ typedef guint32 (*addr_get_CDR_typeCode)(tvbuff_t *, proto_tree *, gint *,
gboolean, int, MessageHeader *);
typedef guint32 (*addr_get_CDR_ulong)(tvbuff_t *, int *, gboolean, int);
typedef guint16 (*addr_get_CDR_ushort)(tvbuff_t *, int *, gboolean, int);
-typedef gint8 (*addr_get_CDR_wchar)(tvbuff_t *, gchar **, int *,
+typedef gint (*addr_get_CDR_wchar)(tvbuff_t *, gchar **, int *,
MessageHeader *);
typedef guint32 (*addr_get_CDR_wstring)(tvbuff_t *, gchar **, int *, gboolean,
int, MessageHeader *);