"Fossies" - the Fresh Open Source Software Archive 
Member "evolution-mapi-3.46.1/src/libexchangemapi/e-mapi-cal-tz-utils.h" (2 Dec 2022, 1730 Bytes) of package /linux/misc/evolution-mapi-3.46.1.tar.xz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "e-mapi-cal-tz-utils.h" see the
Fossies "Dox" file reference documentation.
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with the program; if not, see <http://www.gnu.org/licenses/>
15 *
16 *
17 * Authors:
18 * Suman Manjunath <msuman@novell.com>
19 *
20 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
21 *
22 */
23
24 #ifndef E_MAPI_CAL_TZ_UTILS_H
25 #define E_MAPI_CAL_TZ_UTILS_H
26
27 #include <glib.h>
28 #include <libecal/libecal.h>
29
30 #include "e-mapi-connection.h"
31
32 G_BEGIN_DECLS
33
34 const gchar * e_mapi_cal_tz_util_get_mapi_equivalent (const gchar *ical_tz_location);
35 const gchar * e_mapi_cal_tz_util_get_ical_equivalent (const gchar *mapi_tz_location);
36 const gchar * e_mapi_cal_tz_util_ical_from_zone_struct(const guint8 *lpb,
37 guint32 cb);
38 gboolean e_mapi_cal_tz_util_populate (void);
39 void e_mapi_cal_tz_util_destroy (void);
40 void e_mapi_cal_tz_util_dump (void);
41 void e_mapi_cal_util_mapi_tz_to_bin (const gchar *mapi_tzid,
42 struct SBinary_short *bin,
43 TALLOC_CTX *mem_ctx,
44 gboolean is_recur);
45 int e_mapi_cal_util_mapi_tz_pidlidtimezone (ICalTimezone *ictz);
46 gchar * e_mapi_cal_util_bin_to_mapi_tz (const guint8 *lpb, guint32 cb);
47
48 G_END_DECLS
49
50 #endif