aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal_struct.h
blob: 77420cf9ffe9d0d8292c7a526fd9c1f0b3ba95ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}