comparison 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
comparison
equal deleted inserted replaced
12105:d4cd7d443795 12106:36a0c8719af3
34 #include "xmlnode.h" 34 #include "xmlnode.h"
35 35
36 #ifdef __cplusplus 36 #ifdef __cplusplus
37 extern "C" { 37 extern "C" {
38 #endif 38 #endif
39
40
41 /**
42 * A key-value pair.
43 *
44 * This is used by, among other things, gaim_gtk_combo* functions to pass in a
45 * list of key-value pairs so it can display a user-friendly value.
46 */
47 typedef struct _GaimKeyValuePair
48 {
49 gchar *key;
50 void *value;
51
52 } GaimKeyValuePair;
53
54
39 55
40 /**************************************************************************/ 56 /**************************************************************************/
41 /** @name Base16 Functions */ 57 /** @name Base16 Functions */
42 /**************************************************************************/ 58 /**************************************************************************/
43 /*@{*/ 59 /*@{*/