aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-01-08 13:40:14 +0800
committernobody <nobody@localhost>1999-01-08 13:40:14 +0800
commit5ea07903d36065bc9ee5580960ee2d06b6678293 (patch)
treea9ba1b7363baf7b2bca1b34e112f5a538b937d92 /calendar/cal_struct.h
parentc3284ed1198fb5284e239edf28d009af5c55e6bc (diff)
downloadgsoc2013-evolution-OLD_EZPAINT.tar
gsoc2013-evolution-OLD_EZPAINT.tar.gz
gsoc2013-evolution-OLD_EZPAINT.tar.bz2
gsoc2013-evolution-OLD_EZPAINT.tar.lz
gsoc2013-evolution-OLD_EZPAINT.tar.xz
gsoc2013-evolution-OLD_EZPAINT.tar.zst
gsoc2013-evolution-OLD_EZPAINT.zip
This commit was manufactured by cvs2svn to create tag 'OLD_EZPAINT'.OLD_EZPAINT
svn path=/tags/OLD_EZPAINT/; revision=588
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;
-};
-