1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #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
|