diff options
Diffstat (limited to 'calendar/cal_struct.h')
-rw-r--r-- | calendar/cal_struct.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/calendar/cal_struct.h b/calendar/cal_struct.h new file mode 100644 index 0000000000..77420cf9ff --- /dev/null +++ b/calendar/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; +} + |