aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-03-12 00:07:46 +0000
committerGuy Harris <guy@alum.mit.edu>2003-03-12 00:07:46 +0000
commitab84d8be6efcc499b0239bb3c59df027158016cb (patch)
tree6812abf5405197bc61123201e2b7f570cbd50eaa /util.h
parent50899dad380ce3ae6c846368f0e38b7ee3f1ae75 (diff)
Change the version messages to put the "compiled with" stuff on a
separate line, and to put the "running with" info on a separate line from that, to make the output narrower. svn path=/trunk/; revision=7344
Diffstat (limited to 'util.h')
-rw-r--r--util.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/util.h b/util.h
index c928211bc6..21b8094064 100644
--- 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: util.h,v 1.28 2003/03/12 00:07:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -30,10 +30,16 @@ extern "C" {
#endif /* __cplusplus */
/*
- * Get various library version and the OS version and append them to
+ * Get various library compile-time versions and append them to
* the specified GString.
*/
-void get_version_info(GString *str);
+void get_compiled_version_info(GString *str);
+
+/*
+ * Get various library run-time versions, and the OS version, and append
+ * them to the specified GString.
+ */
+void get_runtime_version_info(GString *str);
int create_tempfile(char *, int, const char *);