No more GIOP plugins, so get rid of the directory for the former plugins.
[metze/wireshark/wip.git] / version_info.h
index d002b7805dc75447355ea1ddb03eca9f7dd30dd8..31548ef6479ac58418c065eac45ae67ca2e22df6 100644 (file)
@@ -39,19 +39,22 @@ 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 compile-time information used only by applications that use
- * libwireshark.
+ * Get the OS version, and append it to the GString
  */
-void get_epan_compiled_version_info(GString *str);
+void get_os_version_info(GString *str);
 
 /*
  * Get various library run-time versions, and the OS version, and append