diff options
author | Allen Winter <allen.winter@kdab.com> | 2015-05-10 13:14:06 -0400 |
---|---|---|
committer | Allen Winter <allen.winter@kdab.com> | 2015-05-10 13:14:06 -0400 |
commit | 0a4a13ddcb062f4749ae00eeba01993974e5f467 (patch) | |
tree | 1c3fbe90edd0ad13355e98b87de078c6d01d4df8 /src/libical/icalrestriction.h | |
parent | 938adfc30db8affd9afd57466763f31f30454a78 (diff) | |
download | libical-git-0a4a13ddcb062f4749ae00eeba01993974e5f467.tar.gz |
time to unhide all remaining symbols from headers
these are the ones we aren't linking to in our own code
but assuming applications probably are.
Diffstat (limited to 'src/libical/icalrestriction.h')
-rw-r--r-- | src/libical/icalrestriction.h | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/src/libical/icalrestriction.h b/src/libical/icalrestriction.h index c3ed2654..36b2e7b9 100644 --- a/src/libical/icalrestriction.h +++ b/src/libical/icalrestriction.h @@ -30,25 +30,24 @@ #include "icalproperty.h" /* These must stay in this order for icalrestriction_compare to work */ -typedef enum icalrestriction_kind { - ICAL_RESTRICTION_NONE=0, /* 0 */ - ICAL_RESTRICTION_ZERO, /* 1 */ - ICAL_RESTRICTION_ONE, /* 2 */ - ICAL_RESTRICTION_ZEROPLUS, /* 3 */ - ICAL_RESTRICTION_ONEPLUS, /* 4 */ - ICAL_RESTRICTION_ZEROORONE, /* 5 */ - ICAL_RESTRICTION_ONEEXCLUSIVE, /* 6 */ - ICAL_RESTRICTION_ONEMUTUAL, /* 7 */ - ICAL_RESTRICTION_UNKNOWN /* 8 */ +typedef enum icalrestriction_kind +{ + ICAL_RESTRICTION_NONE = 0, /* 0 */ + ICAL_RESTRICTION_ZERO, /* 1 */ + ICAL_RESTRICTION_ONE, /* 2 */ + ICAL_RESTRICTION_ZEROPLUS, /* 3 */ + ICAL_RESTRICTION_ONEPLUS, /* 4 */ + ICAL_RESTRICTION_ZEROORONE, /* 5 */ + ICAL_RESTRICTION_ONEEXCLUSIVE, /* 6 */ + ICAL_RESTRICTION_ONEMUTUAL, /* 7 */ + ICAL_RESTRICTION_UNKNOWN /* 8 */ } icalrestriction_kind; -int icalrestriction_compare(icalrestriction_kind restr, int count); +LIBICAL_ICAL_EXPORT int icalrestriction_compare(icalrestriction_kind restr, int count); +LIBICAL_ICAL_EXPORT int icalrestriction_is_parameter_allowed(icalproperty_kind property, + icalparameter_kind parameter); -int icalrestriction_is_parameter_allowed(icalproperty_kind property, - icalparameter_kind parameter); - -LIBICAL_ICAL_EXPORT int icalrestriction_check(icalcomponent* comp); - +LIBICAL_ICAL_EXPORT int icalrestriction_check(icalcomponent * comp); #endif /* !ICALRESTRICTION_H */ |