1.1 --- a/src/config.h Tue Jul 21 20:33:21 2009 +1000
1.2 +++ b/src/config.h Mon Nov 08 14:12:10 2010 +1000
1.4 #define CONFIG_TYPE_KEY 3
1.5 #define CONFIG_TYPE_FILELIST 4
1.6 #define CONFIG_TYPE_INTEGER 5
1.7 +#define CONFIG_TYPE_BOOLEAN 6
1.9 #define DEFAULT_CONFIG_FILENAME "lxdreamrc"
1.12 void lxdream_copy_config_group( lxdream_config_group_t dest, lxdream_config_group_t src );
1.13 void lxdream_clone_config_group( lxdream_config_group_t dest, lxdream_config_group_t src );
1.15 +gboolean lxdream_get_config_boolean_value( lxdream_config_group_t group, int key );
1.16 +gboolean lxdream_set_config_boolean_value( lxdream_config_group_t group, int key, gboolean value );
1.19 * Return a fully expanded path value for a key - this performs substitutions
1.20 * for ~ and simple shell variables ($VAR and ${VAR})