aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-03-31 08:20:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-03-31 08:20:28 +0000
commitaf68d22bce79d8b2e5de2fb8163ef32e13a09cfa (patch)
tree7757124c109b8e721fea9646f28b31020df80cbc /util.h
parent660d7b8df2774420a4fe14bfc2a15fe3ccb42db6 (diff)
Move the bitfield-decoding routines to "packet.h", along with other
helper routines for packet dissecting, and away from "util.c", which is now all GUI-related. (Among other things, this makes life more pleasant for Gilbert Ramirez's "tethereal" stuff, although a lot more separation of GUI from other stuff needs to be done to make that - or a "curses"-based variant of Ethereal, or a variant using some other GUI toolkit - work smoothly.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@235 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.h')
-rw-r--r--util.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/util.h b/util.h
index ec554245c1..aa351c17e0 100644
--- a/util.h
+++ b/util.h
@@ -1,7 +1,7 @@
/* util.h
* Utility definitions
*
- * $Id: util.h,v 1.7 1999/03/23 03:14:46 gram Exp $
+ * $Id: util.h,v 1.8 1999/03/31 08:20:28 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -46,16 +46,6 @@ void simple_dialog(gint, gint *, gchar *, ...)
void simple_dialog(gint, gint *, gchar *, ...);
#endif
-
-const char *decode_boolean_bitfield(guint32 val, guint32 mask, int width,
- const char *truedesc, const char *falsedesc);
-
-const char *decode_enumerated_bitfield(guint32 val, guint32 mask, int width,
- const value_string *tab, const char *fmt);
-
-const char *decode_numeric_bitfield(guint32 val, guint32 mask, int width,
- const char *fmt);
-
#ifdef __cplusplus
}
#endif /* __cplusplus */