summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJan Kalab <pitlicek@gmail.com>2010-09-03 12:58:52 +0000
committerJan Kalab <pitlicek@gmail.com>2010-09-03 12:58:52 +0000
commita7505c0b91c9333c8968e98e57c8cb1142378190 (patch)
tree5c7bcfe2b2c8238f51d3f9f60f2207fa8eb5a245 /include
parent3403dbf3741bb3d5f057289a204ea2d11d41b9df (diff)
Support for calendar events priorities and categories (with ISO C90 fix)
See RFC 5545 ch. 3.8.1.2 and 9. (closes issue #17837) Review: https://reviewboard.asterisk.org/r/880/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@284851 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/calendar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asterisk/calendar.h b/include/asterisk/calendar.h
index 09e5bcd5b..8b970ae69 100644
--- a/include/asterisk/calendar.h
+++ b/include/asterisk/calendar.h
@@ -95,7 +95,9 @@ struct ast_calendar_event {
AST_STRING_FIELD(organizer);
AST_STRING_FIELD(location);
AST_STRING_FIELD(uid);
+ AST_STRING_FIELD(categories);
);
+ int priority; /*!< Priority of event */
struct ast_calendar *owner; /*!< The calendar that owns this event */
time_t start; /*!< Start of event (UTC) */
time_t end; /*!< End of event (UTC) */