aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authorCraig Small <csmall@src.gnome.org>1998-01-12 10:51:30 +0800
committerCraig Small <csmall@src.gnome.org>1998-01-12 10:51:30 +0800
commit2485eae90d07f5d649729e6bd02d15ae1b38006d (patch)
tree27875b704248104ff3052581538a0bdf8629ee3d /calendar/gui/cal_struct.h
downloadgsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.gz
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.bz2
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.lz
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.xz
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.zst
gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.zip
New Gnome Calendar files
svn path=/trunk/; revision=2
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r--calendar/gui/cal_struct.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/calendar/gui/cal_struct.h b/calendar/gui/cal_struct.h
new file mode 100644
index 0000000000..77420cf9ff
--- /dev/null
+++ b/calendar/gui/cal_struct.h
@@ -0,0 +1,14 @@
+struct actionitem {
+ char date[MAX_SZ];
+ char time[MAX_SZ];
+}
+
+struct event {
+ struct actionitem start;
+ struct actionitem end;
+
+ char description[MAX_SZ];
+ char subtype[MAX_SZ];
+ GList *properties;
+}
+