aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-02-25 08:26:34 +0800
committernobody <nobody@localhost>1999-02-25 08:26:34 +0800
commit61c2c42f9a6901a6ed4eaf71f428482db6a77a41 (patch)
tree981129c6988a90055c0d9e9891686cdb17101c78 /calendar/gui/cal_struct.h
parent6c9ae3c49097e3e589381aeb76d10ae0a0f9d663 (diff)
downloadgsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar.gz
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar.bz2
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar.lz
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar.xz
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.tar.zst
gsoc2013-evolution-GNOME_NETWORK_1_0_PRE.zip
This commit was manufactured by cvs2svn to create tagGNOME_NETWORK_1_0_PRE
'GNOME_NETWORK_1_0_PRE'. svn path=/tags/GNOME_NETWORK_1_0_PRE/; revision=699
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r--calendar/gui/cal_struct.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/calendar/gui/cal_struct.h b/calendar/gui/cal_struct.h
deleted file mode 100644
index 411036c7aa..0000000000
--- a/calendar/gui/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;
-};
-