Libical API Documentation  3.0
icallangbind.h
1 /*======================================================================
2  FILE: icallangbind.h
3  CREATOR: eric 25 jan 2001
4 
5  (C) COPYRIGHT 1999 Eric Busboom <eric@softwarestudio.org>
6  http://www.softwarestudio.org
7 
8  This library is free software; you can redistribute it and/or modify
9  it under the terms of either:
10 
11  The LGPL as published by the Free Software Foundation, version
12  2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
13 
14  Or:
15 
16  The Mozilla Public License Version 2.0. You may obtain a copy of
17  the License at http://www.mozilla.org/MPL/
18 ======================================================================*/
19 
20 #ifndef ICALLANGBIND_H
21 #define ICALLANGBIND_H
22 
23 #include "libical_ical_export.h"
24 #include "icalcomponent.h"
25 #include "icalproperty.h"
26 
27 LIBICAL_ICAL_EXPORT int *icallangbind_new_array(int size);
28 
29 LIBICAL_ICAL_EXPORT void icallangbind_free_array(int *array);
30 
31 LIBICAL_ICAL_EXPORT int icallangbind_access_array(int *array, int index);
32 
33 LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_first_property(icalcomponent *c,
34  const char *prop);
35 
36 LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_next_property(icalcomponent *c,
37  const char *prop);
38 
39 LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_first_component(icalcomponent *c,
40  const char *comp);
41 
42 LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_next_component(icalcomponent *c,
43  const char *comp);
44 
45 LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_first_parameter(icalproperty *prop);
46 
47 LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_next_parameter(icalproperty *prop);
48 
49 LIBICAL_ICAL_EXPORT const char *icallangbind_property_eval_string(icalproperty *prop,
50  const char *sep);
51 
52 LIBICAL_ICAL_EXPORT char *icallangbind_property_eval_string_r(icalproperty *prop,
53  const char *sep);
54 
55 LIBICAL_ICAL_EXPORT int icallangbind_string_to_open_flag(const char *str);
56 
57 LIBICAL_ICAL_EXPORT const char *icallangbind_quote_as_ical(const char *str);
58 
59 LIBICAL_ICAL_EXPORT char *icallangbind_quote_as_ical_r(const char *str);
60 
61 #endif
Definition: icalcomponent.c:33