aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-04-17 09:22:18 +0800
committernobody <nobody@localhost>1999-04-17 09:22:18 +0800
commit78d4e2763f6f69122b8b29cba76d56632e2a7939 (patch)
tree136c6488c85ed1361c40a50a802af3491084950c /calendar/cal_struct.h
parentceb6a5d36a3031895654f904b458145228e5ea1c (diff)
downloadgsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar.gz
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar.bz2
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar.lz
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar.xz
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.tar.zst
gsoc2013-evolution-78d4e2763f6f69122b8b29cba76d56632e2a7939.zip
This commit was manufactured by cvs2svn to create tag 'GGV_0_30'.GGV_0_30
svn path=/tags/GGV_0_30/; revision=820
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;
-};
-