diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-11-18 21:41:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-11-18 21:41:40 +0000 |
commit | 74777083d35400bb6ca9fff58ea3e0d53f24671d (patch) | |
tree | 32ae2267a8133abe304049709bfea28f95b428e1 /prefs-int.h | |
parent | 567ee3e08380fca08b272aae2932062148de7804 (diff) | |
download | wireshark-74777083d35400bb6ca9fff58ea3e0d53f24671d.tar.gz wireshark-74777083d35400bb6ca9fff58ea3e0d53f24671d.tar.bz2 wireshark-74777083d35400bb6ca9fff58ea3e0d53f24671d.zip |
Fix a number of problems that caused compiles to fail if
PLUGINS_NEED_ADDRESS_TABLE was defined.
svn path=/trunk/; revision=2662
Diffstat (limited to 'prefs-int.h')
-rw-r--r-- | prefs-int.h | 6 |
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 */ |