summaryrefslogtreecommitdiff
path: root/src/config-file.h
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2008-02-12 21:29:01 -0800
committerAaron Plattner <aplattner@nvidia.com>2008-02-12 21:29:01 -0800
commit9d2899dd01e78209d5a6f0428bd52c22a9245b48 (patch)
treeb3e7b68731fc01e723c2c102391e19e36fc09680 /src/config-file.h
parentf984a7a8a1e090275f54c8c5ba33d30950a0c1f6 (diff)
169.07169.07
Diffstat (limited to 'src/config-file.h')
-rw-r--r--src/config-file.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config-file.h b/src/config-file.h
index ae787ce..683b5b3 100644
--- a/src/config-file.h
+++ b/src/config-file.h
@@ -41,9 +41,17 @@
#define CONFIG_PROPERTIES_INCLUDE_DISPLAY_NAME_IN_CONFIG_FILE (1<<3)
#define CONFIG_PROPERTIES_SHOW_QUIT_DIALOG (1<<4)
+typedef struct _TimerConfigProperty {
+ char *description;
+ unsigned int user_enabled;
+ unsigned int interval;
+ struct _TimerConfigProperty *next;
+} TimerConfigProperty;
+
typedef struct {
unsigned int booleans;
char *locale;
+ TimerConfigProperty *timers;
} ConfigProperties;