aboutsummaryrefslogtreecommitdiffstats
path: root/prefs-int.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-18 21:41:40 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-18 21:41:40 +0000
commitce11cc30db9985d01666189f7a740b03fbd89e8b (patch)
tree32ae2267a8133abe304049709bfea28f95b428e1 /prefs-int.h
parenta243949cca0393e33e7af9a5530fb27aaa48236b (diff)
Fix a number of problems that caused compiles to fail if
PLUGINS_NEED_ADDRESS_TABLE was defined. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2662 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'prefs-int.h')
-rw-r--r--prefs-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/prefs-int.h b/prefs-int.h
index 3df04f88b6..04eb084c38 100644
--- a/prefs-int.h
+++ b/prefs-int.h
@@ -2,7 +2,7 @@
* Definitions for implementation of preference handling routines;
* used by "friends" of the preferences type.
*
- * $Id: prefs-int.h,v 1.2 2000/07/09 03:29:27 guy Exp $
+ * $Id: prefs-int.h,v 1.3 2000/11/18 21:41:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -64,7 +64,7 @@ struct preference {
union {
guint base; /* input/output base, for PREF_UINT */
struct {
- const enum_val *enumvals; /* list of name & values */
+ const enum_val_t *enumvals; /* list of name & values */
gboolean radio_buttons; /* TRUE if it should be shown as
radio buttons rather than as an
option menu or combo box in
@@ -74,7 +74,7 @@ struct preference {
void *control; /* handle for GUI control for this preference */
};
-gint find_val_for_string(const char *needle, const enum_val *haystack,
+gint find_val_for_string(const char *needle, const enum_val_t *haystack,
gint default_value);
#endif /* prefs-int.h */