blob: 77420cf9ffe9d0d8292c7a526fd9c1f0b3ba95ef (
plain) (
tree)
|
|
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;
}
|