summaryrefslogtreecommitdiff
path: root/openbox/config.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-23 00:39:04 +0000
committerDana Jansens <danakj@orodu.net>2003-03-23 00:39:04 +0000
commit6cebd34855d6e29345ca821a17feb82753982e7e (patch)
tree31c07599eca30abafb1e8279b42acbdaed9567cb /openbox/config.h
parentddb5d43edc8bb35dadaa83fc3b516a43c1674cc9 (diff)
add booleans
Diffstat (limited to 'openbox/config.h')
-rw-r--r--openbox/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/config.h b/openbox/config.h
index 7366e95f..9b62b8e5 100644
--- a/openbox/config.h
+++ b/openbox/config.h
@@ -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 {