aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-03-24 23:22:16 +0000
committerFrederic Culot <calcurse@culot.org>2007-03-24 23:22:16 +0000
commitfc14f43076e260a003398868eacc530e849e30dc (patch)
tree9a2abf537b03b2ddc71bc4ebc71aab2af36fc999
parentc6c3b74f45727980163ea1aaf40c7b3be82372e1 (diff)
downloadcalcurse-fc14f43076e260a003398868eacc530e849e30dc.tar.gz
calcurse-fc14f43076e260a003398868eacc530e849e30dc.zip
conf_t type created
-rwxr-xr-xsrc/vars.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/vars.h b/src/vars.h
index 2d2e51b..f85526f 100755
--- a/src/vars.h
+++ b/src/vars.h
@@ -1,4 +1,4 @@
-/* $calcurse: vars.h,v 1.7 2007/03/17 16:38:03 culot Exp $ */
+/* $calcurse: vars.h,v 1.8 2007/03/24 23:22:16 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -71,6 +71,16 @@ struct nbar_s {
pthread_mutex_t mutex;
};
+/* General configuration variables */
+typedef struct {
+ bool auto_save;
+ bool confirm_quit;
+ bool confirm_delete;
+ bool skip_system_dialogs;
+ bool skip_progress_bar;
+ bool week_begins_on_monday;
+} conf_t;
+
extern int col, row;
extern bool colorize;
extern int days[12];