Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
vcardparser.h
1/*======================================================================
2 FILE: vcardparser.h
3 CREATOR: Ken Murchison 24 Aug 2022
4 CONTRIBUTOR: Bron Gondwana
5
6 SPDX-FileCopyrightText: 2022, Fastmail Pty. Ltd. (https://fastmail.com)
7 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
8 ======================================================================*/
9
10#ifndef VCARDPARSER_H
11#define VCARDPARSER_H
12
13#include "libical_vcard_export.h"
14#include "vcardcomponent.h"
15#include "vcardderivedvalue.h"
16
17LIBICAL_VCARD_EXPORT vcardcomponent *vcardparser_parse_string(const char *str);
18LIBICAL_VCARD_EXPORT const char *vcardparser_errstr(int err);
19
34typedef vcardvalue_kind (*vcard_xprop_value_kind_func)(const char *name, void *data);
35
56LIBICAL_VCARD_EXPORT void vcardparser_set_xprop_value_kind(vcard_xprop_value_kind_func func, void *data);
57
58#endif /* VCARDPARSER_H */