Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gtimezone.h
Go to the documentation of this file.
1/*
2 * Copyright © 2010 Codethink Limited
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Ryan Lortie <desrt@desrt.ca>
20 */
21
22#ifndef __G_TIME_ZONE_H__
23#define __G_TIME_ZONE_H__
24
25#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
26#error "Only <glib.h> can be included directly."
27#endif
28
29#include <glib/gerror.h>
30#include <glib/gtypes.h>
31
33
34typedef struct _GTimeZone GTimeZone;
35
36/**
37 * GTimeType:
38 * @G_TIME_TYPE_STANDARD: the time is in local standard time
39 * @G_TIME_TYPE_DAYLIGHT: the time is in local daylight time
40 * @G_TIME_TYPE_UNIVERSAL: the time is in UTC
41 *
42 * Disambiguates a given time in two ways.
43 *
44 * First, specifies if the given time is in universal or local time.
45 *
46 * Second, if the time is in local time, specifies if it is local
47 * standard time or local daylight time. This is important for the case
48 * where the same local time occurs twice (during daylight savings time
49 * transitions, for example).
50 */
57
59GTimeZone * g_time_zone_new (const gchar *identifier);
68
73
76 GTimeType type,
77 gint64 time_);
78
81 GTimeType type,
82 gint64 *time_);
83
86 gint interval);
89 gint interval);
92 gint interval);
95
97
98#endif /* __G_TIME_ZONE_H__ */
#define GLIB_DEPRECATED_IN_2_68_FOR(f)
#define GLIB_AVAILABLE_IN_2_68
#define GLIB_AVAILABLE_IN_ALL
#define GLIB_AVAILABLE_IN_2_58
signed long gint64
Definition glibconfig.h:66
signed int gint32
Definition glibconfig.h:56
#define G_END_DECLS
Definition gmacros.h:910
#define G_BEGIN_DECLS
Definition gmacros.h:909
GLIB_AVAILABLE_IN_ALL gint g_time_zone_adjust_time(GTimeZone *tz, GTimeType type, gint64 *time_)
GLIB_AVAILABLE_IN_ALL GTimeZone * g_time_zone_ref(GTimeZone *tz)
GLIB_AVAILABLE_IN_ALL GTimeZone * g_time_zone_new_local(void)
GLIB_AVAILABLE_IN_ALL GTimeZone * g_time_zone_new_utc(void)
typedefG_BEGIN_DECLS struct _GTimeZone GTimeZone
Definition gtimezone.h:34
GLIB_AVAILABLE_IN_ALL gboolean g_time_zone_is_dst(GTimeZone *tz, gint interval)
GLIB_AVAILABLE_IN_ALL const gchar * g_time_zone_get_abbreviation(GTimeZone *tz, gint interval)
GLIB_AVAILABLE_IN_ALL void g_time_zone_unref(GTimeZone *tz)
GTimeType
Definition gtimezone.h:52
@ G_TIME_TYPE_STANDARD
Definition gtimezone.h:53
@ G_TIME_TYPE_UNIVERSAL
Definition gtimezone.h:55
@ G_TIME_TYPE_DAYLIGHT
Definition gtimezone.h:54
GLIB_AVAILABLE_IN_2_68 GTimeZone * g_time_zone_new_identifier(const gchar *identifier)
GLIB_AVAILABLE_IN_2_58 const gchar * g_time_zone_get_identifier(GTimeZone *tz)
GLIB_AVAILABLE_IN_ALL gint g_time_zone_find_interval(GTimeZone *tz, GTimeType type, gint64 time_)
GTimeZone * g_time_zone_new(const gchar *identifier)
GLIB_AVAILABLE_IN_ALL gint32 g_time_zone_get_offset(GTimeZone *tz, gint interval)
GLIB_AVAILABLE_IN_2_58 GTimeZone * g_time_zone_new_offset(gint32 seconds)
gint gboolean
Definition gtypes.h:56
G_BEGIN_DECLS typedef char gchar
Definition gtypes.h:52
int gint
Definition gtypes.h:55