Add an install-deps target to the nmake makefiles.
[obnox/wireshark/wip.git] / util.h
diff --git a/util.h b/util.h
index c928211bc69355d4a0cdd1536eb5a73d103977c5..eadf6b9e686025ad7da5ed1fac89993ffcd0bb15 100644 (file)
--- a/util.h
+++ b/util.h
@@ -1,7 +1,7 @@
 /* util.h
  * Utility definitions
  *
- * $Id: util.h,v 1.27 2003/03/08 07:00:46 guy Exp $
+ * $Id$
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
 extern "C" {
 #endif /* __cplusplus */
 
-/*
- * Get various library version and the OS version and append them to
- * the specified GString.
- */
-void get_version_info(GString *str);
-
 int create_tempfile(char *, int, const char *);
 
 /*
  * Collect command-line arguments as a string consisting of the arguments,
  * separated by spaces.
  */
-char *get_args_as_string(int argc, char **argv, int optind);
-
-void ASCII_to_EBCDIC(guint8 *buf, guint bytes);
-guint8 ASCII_to_EBCDIC1(guint8 c);
-void EBCDIC_to_ASCII(guint8 *buf, guint bytes);
-guint8 EBCDIC_to_ASCII1(guint8 c);
+char *get_args_as_string(int, char **, int);
 
 /* Compute the difference between two seconds/microseconds time stamps. */
 void compute_timestamp_diff(gint *, gint *, guint32, guint32, guint32, guint32);
 
+/* Create a capture filter for the connection */
+char *get_conn_cfilter(void);
+
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */