1 /* Evolution calendar system timezone functions
2  * Based on gnome-panel's clock-applet system-timezone.c file.
3  *
4  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
5  *
6  * This library is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13  * for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this library. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #if !defined (__LIBECAL_H_INSIDE__) && !defined (LIBECAL_COMPILATION)
20 #error "Only <libecal/libecal.h> should be included directly."
21 #endif
22 
23 #ifndef E_CAL_SYSTEM_TIMEZONE_H
24 #define E_CAL_SYSTEM_TIMEZONE_H
25 
26 #include <glib.h>
27 
28 gchar *e_cal_system_timezone_get_location (void);
29 
30 #endif
31