icalmessage.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*======================================================================
  2. FILE: icalmessage.h
  3. CREATOR: eric 07 Nov 2000
  4. (C) COPYRIGHT 2000, Eric Busboom <eric@softwarestudio.org>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of either:
  7. The LGPL as published by the Free Software Foundation, version
  8. 2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
  9. Or:
  10. The Mozilla Public License Version 1.0. You may obtain a copy of
  11. the License at http://www.mozilla.org/MPL/
  12. =========================================================================*/
  13. #ifndef ICALMESSAGE_H
  14. #define ICALMESSAGE_H
  15. #include "libical_icalss_export.h"
  16. #include "icalcomponent.h"
  17. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_accept_reply(icalcomponent *c,
  18. const char *user,
  19. const char *msg);
  20. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_decline_reply(icalcomponent *c,
  21. const char *user,
  22. const char *msg);
  23. /* New is modified version of old */
  24. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_counterpropose_reply(icalcomponent *oldc,
  25. icalcomponent *newc,
  26. const char *user,
  27. const char *msg);
  28. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_delegate_reply(icalcomponent *c,
  29. const char *user,
  30. const char *delegatee,
  31. const char *msg);
  32. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_cancel_event(icalcomponent *c,
  33. const char *user,
  34. const char *msg);
  35. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_cancel_instance(icalcomponent *c,
  36. const char *user,
  37. const char *msg);
  38. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_cancel_all(icalcomponent *c,
  39. const char *user, const char *msg);
  40. LIBICAL_ICALSS_EXPORT icalcomponent *icalmessage_new_error_reply(icalcomponent *c,
  41. const char *user,
  42. const char *msg,
  43. const char *debug,
  44. icalrequeststatus rs);
  45. #endif /* ICALMESSAGE_H */