aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftypes-int.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2003-06-11 21:24:54 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2003-06-11 21:24:54 +0000
commit6823d063ee7093fed3e512738005f928aac9e88f (patch)
tree92253e24d0301a29611b54335a976822da8c47f4 /epan/ftypes/ftypes-int.h
parent03731079cada7249deea33e72d626599b6213ebb (diff)
Expand the ability of fvalue_to_string_repr, and modify more FT_* types
to provide that method. svn path=/trunk/; revision=7849
Diffstat (limited to 'epan/ftypes/ftypes-int.h')
-rw-r--r--epan/ftypes/ftypes-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/ftypes/ftypes-int.h b/epan/ftypes/ftypes-int.h
index c264ff079a..cda64a1862 100644
--- a/epan/ftypes/ftypes-int.h
+++ b/epan/ftypes/ftypes-int.h
@@ -1,5 +1,5 @@
/*
- * $Id: ftypes-int.h,v 1.7 2003/02/08 04:22:37 gram Exp $
+ * $Id: ftypes-int.h,v 1.8 2003/06/11 21:24:54 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -30,8 +30,8 @@ typedef void (*FvalueNewFunc)(fvalue_t*);
typedef void (*FvalueFreeFunc)(fvalue_t*);
typedef gboolean (*FvalueFromString)(fvalue_t*, char*, LogFunc);
-typedef char* (*FvalueToStringRepr)(fvalue_t*);
-typedef int (*FvalueStringReprLen)(fvalue_t*);
+typedef void (*FvalueToStringRepr)(fvalue_t*, ftrepr_t, char*);
+typedef int (*FvalueStringReprLen)(fvalue_t*, ftrepr_t);
typedef void (*FvalueSetFunc)(fvalue_t*, gpointer, gboolean);
typedef void (*FvalueSetIntegerFunc)(fvalue_t*, guint32);