/*====================================================================== FILE: icallangbind.h CREATOR: eric 25 jan 2001 (C) COPYRIGHT 1999 Eric Busboom http://www.softwarestudio.org This program is free software; you can redistribute it and/or modify it under the terms of either: The LGPL as published by the Free Software Foundation, version 2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html Or: The Mozilla Public License Version 1.0. You may obtain a copy of the License at http://www.mozilla.org/MPL/ ======================================================================*/ #ifndef ICALLANGBIND_H #define ICALLANGBIND_H #include "libical_ical_export.h" #include "icalcomponent.h" #include "icalproperty.h" LIBICAL_ICAL_EXPORT int *icallangbind_new_array(int size); LIBICAL_ICAL_EXPORT void icallangbind_free_array(int *array); LIBICAL_ICAL_EXPORT int icallangbind_access_array(int *array, int index); LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_property(icalcomponent *c, int n, const char *prop); LIBICAL_ICAL_EXPORT const char *icallangbind_get_property_val(icalproperty *p); LIBICAL_ICAL_EXPORT const char *icallangbind_get_parameter(icalproperty *p, const char *parameter); LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_component(icalcomponent *c, const char *comp); LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_first_property(icalcomponent *c, const char *prop); LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_next_property(icalcomponent *c, const char *prop); LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_first_component(icalcomponent *c, const char *comp); LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_next_component(icalcomponent *c, const char *comp); LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_first_parameter(icalproperty *prop); LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_next_parameter(icalproperty *prop); LIBICAL_ICAL_EXPORT const char *icallangbind_property_eval_string(icalproperty *prop, char *sep); LIBICAL_ICAL_EXPORT char *icallangbind_property_eval_string_r(icalproperty *prop, char *sep); LIBICAL_ICAL_EXPORT int icallangbind_string_to_open_flag(const char *str); LIBICAL_ICAL_EXPORT const char *icallangbind_quote_as_ical(const char *str); LIBICAL_ICAL_EXPORT char *callangbind_quote_as_ical_r(const char *str); #endif