diff options
author | Craig Small <csmall@src.gnome.org> | 1998-01-12 10:51:30 +0800 |
---|---|---|
committer | Craig Small <csmall@src.gnome.org> | 1998-01-12 10:51:30 +0800 |
commit | 2485eae90d07f5d649729e6bd02d15ae1b38006d (patch) | |
tree | 27875b704248104ff3052581538a0bdf8629ee3d /calendar/gui | |
download | gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.gz gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.tar.zst gsoc2013-evolution-2485eae90d07f5d649729e6bd02d15ae1b38006d.zip |
New Gnome Calendar files
svn path=/trunk/; revision=2
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/cal_struct.h | 14 |
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; +} + |