aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-10-01 16:56:39 +0800
committernobody <nobody@localhost>1998-10-01 16:56:39 +0800
commitaae3a37cb11759f99268f86e0c37fd72ef5be232 (patch)
tree23e6dba03d3654ee9649835b0486dadab49110c5 /calendar/cal_struct.h
parente94162c0a48defcaa3869dc9b82638170a62bab2 (diff)
downloadgsoc2013-evolution-WITHXMHTML.tar
gsoc2013-evolution-WITHXMHTML.tar.gz
gsoc2013-evolution-WITHXMHTML.tar.bz2
gsoc2013-evolution-WITHXMHTML.tar.lz
gsoc2013-evolution-WITHXMHTML.tar.xz
gsoc2013-evolution-WITHXMHTML.tar.zst
gsoc2013-evolution-WITHXMHTML.zip
This commit was manufactured by cvs2svn to create tag 'WITHXMHTML'.WITHXMHTML
svn path=/tags/WITHXMHTML/; revision=422
Diffstat (limited to 'calendar/cal_struct.h')
-rw-r--r--calendar/cal_struct.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/calendar/cal_struct.h b/calendar/cal_struct.h
deleted file mode 100644
index 411036c7aa..0000000000
--- a/calendar/cal_struct.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#define MAX_SZ 30
-
-enum RepeatType {
- Single,
- Days,
- Months,
- WeekDays,
- MonthDays
-};
-
-
-struct actionitem {
- char date[MAX_SZ];
- int time; /* Minutes past midnight */
-};
-
-struct event {
- struct actionitem start;
- struct actionitem end;
-
- enum RepeatType repeat;
- int repeatcount;
- char description[MAX_SZ];
- char subtype[MAX_SZ];
- GList *properties;
-};
-