]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_calendar.h
* Killed off CtdlGetDynamicSymbol() and just put all the symbols in server.h
[citadel.git] / citadel / serv_calendar.h
index 059ba2d0d66cff28a07d816c86dd1d65fe68a137..f82bba58fff2302335e0f364791268896f6f0b66 100644 (file)
@@ -5,5 +5,19 @@
  *
  */
 
+struct cit_ical {
+        int avoid_sending_invitations;
+};
 
-/* Hrm, we don't have anything to put here yet... */
+#define CIT_ICAL ((struct cit_ical *)CtdlGetUserData(SYM_CIT_ICAL))
+
+/*
+ * When saving a message containing calendar information, we keep track of
+ * some components in the calendar object that need to be inserted into
+ * message fields.
+ */
+struct icalmessagemod {
+       char subject[SIZ];
+       char uid[SIZ];
+       time_t dtstart;
+};