Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
vcardtypes.h
1/*======================================================================
2 FILE: vcardtypes.h
3 CREATOR: Ken Murchison 24 Aug 2022
4
5 SPDX-FileCopyrightText: 2022, Fastmail Pty. Ltd. (https://fastmail.com)
6 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7 ======================================================================*/
8
9#ifndef VCARDTYPES_H
10#define VCARDTYPES_H
11
12#include "libical_vcard_export.h"
13
14#define VCARD_GEO_LEN 16
15
16typedef struct vcardgeotype {
17 const char *uri;
18 struct {
19 char lat[VCARD_GEO_LEN];
20 char lon[VCARD_GEO_LEN];
21 } coords;
23
24typedef struct vcardtztype {
25 const char *tzid;
26 const char *uri;
27 int utcoffset;
29
30#endif /* VCARDTYPES_H */
Definition vcardtypes.h:16
Definition vcardtypes.h:24