* Killed off CtdlGetDynamicSymbol() and just put all the symbols in server.h
[citadel.git] / citadel / serv_calendar.h
1 /*
2  * $Id$
3  *
4  * iCalendar implementation for Citadel/UX
5  *
6  */
7
8 struct cit_ical {
9         int avoid_sending_invitations;
10 };
11
12 #define CIT_ICAL ((struct cit_ical *)CtdlGetUserData(SYM_CIT_ICAL))
13
14 /*
15  * When saving a message containing calendar information, we keep track of
16  * some components in the calendar object that need to be inserted into
17  * message fields.
18  */
19 struct icalmessagemod {
20         char subject[SIZ];
21         char uid[SIZ];
22         time_t dtstart;
23 };