|
Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
|
Defines functions for creating component reply messages. More...
Go to the source code of this file.
Functions | |
| icalcomponent * | icalmessage_new_accept_reply (const icalcomponent *c, const char *user, const char *msg) |
| icalcomponent * | icalmessage_new_counterpropose_reply (const icalcomponent *oldc, const icalcomponent *newc, const char *user, const char *msg) |
| icalcomponent * | icalmessage_new_decline_reply (const icalcomponent *c, const char *user, const char *msg) |
| icalcomponent * | icalmessage_new_delegate_reply (const icalcomponent *c, const char *user, const char *delegatee, const char *msg) |
| icalcomponent * | icalmessage_new_error_reply (const icalcomponent *c, const char *user, const char *msg, const char *debug, icalrequeststatus code) |
Defines functions for creating component reply messages.
Definition in file icalmessage.h.
| icalcomponent * icalmessage_new_accept_reply | ( | const icalcomponent * | c, |
| const char * | user, | ||
| const char * | msg ) |
Constructs an icalcomponent for an accept reply.
| c | is a pointer to a valid icalcomponent |
| user | is a pointer to a char string containing a user from the attendee list |
| msg | is a pointer to a char string containing the message |
Definition at line 155 of file icalmessage.c.
| icalcomponent * icalmessage_new_counterpropose_reply | ( | const icalcomponent * | oldc, |
| const icalcomponent * | newc, | ||
| const char * | user, | ||
| const char * | msg ) |
Constructs a new icalcomponent for a counterproposal reply for an existing icalcomponent.
| oldc | is a pointer to a valid icalcomponent for the current reply to modify |
| newc | is a pointer to a valid icalcomponent for the newly modified version of oldc |
| user | is a pointer to a char string containing a user from the attendee list |
| msg | is a pointer to a char string containing the message |
Definition at line 200 of file icalmessage.c.
| icalcomponent * icalmessage_new_decline_reply | ( | const icalcomponent * | c, |
| const char * | user, | ||
| const char * | msg ) |
Constructs a new icalcomponent for a decline reply for an existing icalcomponent.
| c | is a pointer to a valid icalcomponent |
| user | is a pointer to a char string containing a user from the attendee list |
| msg | is a pointer to a char string containing the message |
Definition at line 178 of file icalmessage.c.
| icalcomponent * icalmessage_new_delegate_reply | ( | const icalcomponent * | c, |
| const char * | user, | ||
| const char * | delegatee, | ||
| const char * | msg ) |
Constructs a new icalcomponent for a delegate-to reply for an existing icalcomponent.
| c | is a pointer to a valid icalcomponent |
| user | is a pointer to a char string containing a user from the attendee list |
| delegatee | is a pointer to a char string containing a delegatee, possibly not already included in the attendee list. |
| msg | is a pointer to a char string containing the message |
Definition at line 216 of file icalmessage.c.
| icalcomponent * icalmessage_new_error_reply | ( | const icalcomponent * | c, |
| const char * | user, | ||
| const char * | msg, | ||
| const char * | debug, | ||
| icalrequeststatus | code ) |
Constructs a new icalcomponent for an error reply for an existing icalcomponent.
| c | is a pointer to a valid icalcomponent |
| user | is a pointer to a char string containing a user from the attendee list |
| msg | is a pointer to a char string containing the error message |
| debug | is a pointer to a char string to use the debug part of the icalreqstattype to use |
| code | is a icalrequeststatus code part of the icalreqstattype to use |
Definition at line 275 of file icalmessage.c.