Mercurial > pidgin
comparison libpurple/prefs.h @ 29274:e0e0cecdcd16
propagate from branch 'im.pidgin.pidgin' (head 53ec2e73334e6dc99c29f0f13b5ebf4700f5a92c)
to branch 'im.pidgin.cpw.attention_ui' (head 2ce3177a8ec94edba0f242ea181a9bd0f2655751)
author | Marcus Lundblad <ml@update.uu.se> |
---|---|
date | Tue, 24 Feb 2009 20:26:34 +0000 |
parents | bb43dea90623 |
children | 4b8c4870b13a |
comparison
equal
deleted
inserted
replaced
29273:4460eab56456 | 29274:e0e0cecdcd16 |
---|---|
28 #define _PURPLE_PREFS_H_ | 28 #define _PURPLE_PREFS_H_ |
29 | 29 |
30 #include <glib.h> | 30 #include <glib.h> |
31 | 31 |
32 /** | 32 /** |
33 * Pref data types. | 33 * Preference data types. |
34 */ | 34 */ |
35 typedef enum _PurplePrefType | 35 typedef enum _PurplePrefType |
36 { | 36 { |
37 PURPLE_PREF_NONE, | 37 PURPLE_PREF_NONE, /**< No type. */ |
38 PURPLE_PREF_BOOLEAN, | 38 PURPLE_PREF_BOOLEAN, /**< Boolean. */ |
39 PURPLE_PREF_INT, | 39 PURPLE_PREF_INT, /**< Integer. */ |
40 PURPLE_PREF_STRING, | 40 PURPLE_PREF_STRING, /**< String. */ |
41 PURPLE_PREF_STRING_LIST, | 41 PURPLE_PREF_STRING_LIST, /**< List of strings. */ |
42 PURPLE_PREF_PATH, | 42 PURPLE_PREF_PATH, /**< Path. */ |
43 PURPLE_PREF_PATH_LIST | 43 PURPLE_PREF_PATH_LIST /**< List of paths. */ |
44 | 44 |
45 } PurplePrefType; | 45 } PurplePrefType; |
46 | 46 |
47 /** | 47 /** |
48 * The type of callbacks for preference changes. | 48 * The type of callbacks for preference changes. |