]> Dogcows Code - chaz/openbox/blobdiff - openbox/config.h
make tint signed
[chaz/openbox] / openbox / config.h
index 7366e95f041fba453d55628f42585a52be915d08..3d82090ba391f39e3198ee6afd463960e0ae4867 100644 (file)
@@ -5,12 +5,14 @@
 
 typedef enum {
     Config_String,
-    Config_Integer
+    Config_Integer,
+    Config_Bool
 } ConfigValueType;
 
 typedef union {
     char *string;
     int integer;
+    gboolean bool;
 } ConfigValue;
 
 typedef struct {
@@ -52,6 +54,4 @@ gboolean config_def_add_value(ConfigDefEntry *entry, char *value);
    FALSE. */
 gboolean config_def_set(ConfigDefEntry *entry);
 
-void config_parse();
-
 #endif
This page took 0.023597 seconds and 4 git commands to generate.