diff src/util.h @ 12106:36a0c8719af3

[gaim-migrate @ 14403] Account option lists UI from Don. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 15 Nov 2005 08:42:03 +0000
parents 52f27ffe68a5
children 54448bd2ccc7
line wrap: on
line diff
--- a/src/util.h	Tue Nov 15 06:06:47 2005 +0000
+++ b/src/util.h	Tue Nov 15 08:42:03 2005 +0000
@@ -37,6 +37,22 @@
 extern "C" {
 #endif
 
+
+/**
+ * A key-value pair.
+ *
+ * This is used by, among other things, gaim_gtk_combo* functions to pass in a
+ * list of key-value pairs so it can display a user-friendly value.
+ */
+typedef struct _GaimKeyValuePair
+{
+	gchar *key;
+	void *value;
+
+} GaimKeyValuePair;
+
+
+
 /**************************************************************************/
 /** @name Base16 Functions                                                */
 /**************************************************************************/