aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.h
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-21 07:13:43 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-21 07:13:43 +0000
commit137c3eacfea03a571fd613bef274cebc77827f1a (patch)
tree26815d44b8853ef6cdd90ac777f4b1c569584a76 /version_info.h
parente7605da37ad6f67b9e14da43316856a586bfb600 (diff)
Fixed "Compiled with" information in the About box.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34601 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'version_info.h')
-rw-r--r--version_info.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/version_info.h b/version_info.h
index 71638f98d1..0d85d17a5b 100644
--- a/version_info.h
+++ b/version_info.h
@@ -39,13 +39,17 @@ extern const gchar *wireshark_svnversion;
* Get various library compile-time versions and append them to
* the specified GString.
*
- * "additional_info" is called at the end to append any additional
+ * "prepend_info" is called at the start to prepend any additional
+ * information.
+ *
+ * "append_info" is called at the end to append any additional
* information; this is required in order to, for example, put the
* Portaudio information at the end of the string, as we currently
* don't use Portaudio in TShark.
*/
void get_compiled_version_info(GString *str,
- void (*additional_info)(GString *));
+ void (*prepend_info)(GString *),
+ void (*append_info)(GString *));
/*
* Get various library run-time versions, and the OS version, and append