aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-12 00:07:46 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-12 00:07:46 +0000
commit3b1f46eeaab3ba4fd488290b1f3b8f5f660dce2c (patch)
tree6812abf5405197bc61123201e2b7f570cbd50eaa /util.h
parent03273d105c06341a0c3992622b7ad620ad262a38 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7344 f5534014-38df-0310-8fa8-9805f1628bb7
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 *);