1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
31 #ifndef __G_VERSION_MACROS_H__
32 #define __G_VERSION_MACROS_H__
34 /* Version boundaries checks */
36 #define G_ENCODE_VERSION(major,minor) ((major) << 16 | (minor) << 8)
38 /* XXX: Every new stable minor release bump should add a macro here */
43 * A macro that evaluates to the 2.26 version of GLib, in a format
44 * that can be used by the C pre-processor.
48 #define GLIB_VERSION_2_26 (G_ENCODE_VERSION (2, 26))
53 * A macro that evaluates to the 2.28 version of GLib, in a format
54 * that can be used by the C pre-processor.
58 #define GLIB_VERSION_2_28 (G_ENCODE_VERSION (2, 28))
63 * A macro that evaluates to the 2.30 version of GLib, in a format
64 * that can be used by the C pre-processor.
68 #define GLIB_VERSION_2_30 (G_ENCODE_VERSION (2, 30))
73 * A macro that evaluates to the 2.32 version of GLib, in a format
74 * that can be used by the C pre-processor.
78 #define GLIB_VERSION_2_32 (G_ENCODE_VERSION (2, 32))
80 /* evaluates to the current stable version; for development cycles,
81 * this means the next stable target
83 #if (GLIB_MINOR_VERSION % 2)
84 #define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION + 1))
86 #define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION))
89 /* evaluates to the previous stable version */
90 #if (GLIB_MINOR_VERSION % 2)
91 #define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 1))
93 #define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 2))
97 * GLIB_VERSION_MIN_REQUIRED:
99 * A macro that should be defined by the user prior to including
101 * The definition should be one of the predefined GLib version
102 * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
104 * This macro defines the lower bound for the GLib API to use.
106 * If a function has been deprecated in a newer version of GLib,
107 * it is possible to use this symbol to avoid the compiler warnings
108 * without disabling warning for every deprecated function.
112 #ifndef GLIB_VERSION_MIN_REQUIRED
113 # define GLIB_VERSION_MIN_REQUIRED (GLIB_VERSION_PREV_STABLE)
117 * GLIB_VERSION_MAX_ALLOWED:
119 * A macro that should be defined by the user prior to including
121 * The definition should be one of the predefined GLib version
122 * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
124 * This macro defines the upper bound for the GLib API to use.
126 * If a function has been introduced in a newer version of GLib,
127 * it is possible to use this symbol to get compiler warnings when
128 * trying to use that function.
132 #ifndef GLIB_VERSION_MAX_ALLOWED
133 # if GLIB_VERSION_MIN_REQUIRED > GLIB_VERSION_PREV_STABLE
134 # define GLIB_VERSION_MAX_ALLOWED GLIB_VERSION_MIN_REQUIRED
136 # define GLIB_VERSION_MAX_ALLOWED GLIB_VERSION_CUR_STABLE
141 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_MIN_REQUIRED
142 #error "GLIB_VERSION_MAX_ALLOWED must be >= GLIB_VERSION_MIN_REQUIRED"
144 #if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_26
145 #error "GLIB_VERSION_MIN_REQUIRED must be >= GLIB_VERSION_2_26"
148 /* These macros are used to mark deprecated functions in GLib headers,
149 * and thus have to be exposed in installed headers. But please
150 * do *not* use them in other projects. Instead, use G_DEPRECATED
151 * or define your own wrappers around it.
154 /* XXX: Every new stable minor release should add a set of macros here */
156 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_26
157 # define GLIB_DEPRECATED_IN_2_26 GLIB_DEPRECATED
158 # define GLIB_DEPRECATED_IN_2_26_FOR(f) GLIB_DEPRECATED_FOR(f)
160 # define GLIB_DEPRECATED_IN_2_26
161 # define GLIB_DEPRECATED_IN_2_26_FOR(f)
164 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_26
165 # define GLIB_AVAILABLE_IN_2_26 GLIB_UNAVAILABLE(2, 26)
167 # define GLIB_AVAILABLE_IN_2_26
170 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_28
171 # define GLIB_DEPRECATED_IN_2_28 GLIB_DEPRECATED
172 # define GLIB_DEPRECATED_IN_2_28_FOR(f) GLIB_DEPRECATED_FOR(f)
174 # define GLIB_DEPRECATED_IN_2_28
175 # define GLIB_DEPRECATED_IN_2_28_FOR(f)
178 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_28
179 # define GLIB_AVAILABLE_IN_2_28 GLIB_UNAVAILABLE(2, 28)
181 # define GLIB_AVAILABLE_IN_2_28
184 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_30
185 # define GLIB_DEPRECATED_IN_2_30 GLIB_DEPRECATED
186 # define GLIB_DEPRECATED_IN_2_30_FOR(f) GLIB_DEPRECATED_FOR(f)
188 # define GLIB_DEPRECATED_IN_2_30
189 # define GLIB_DEPRECATED_IN_2_30_FOR(f)
192 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_30
193 # define GLIB_AVAILABLE_IN_2_30 GLIB_UNAVAILABLE(2, 30)
195 # define GLIB_AVAILABLE_IN_2_30
198 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_32
199 # define GLIB_DEPRECATED_IN_2_32 GLIB_DEPRECATED
200 # define GLIB_DEPRECATED_IN_2_32_FOR(f) GLIB_DEPRECATED_FOR(f)
202 # define GLIB_DEPRECATED_IN_2_32
203 # define GLIB_DEPRECATED_IN_2_32_FOR(f)
206 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_32
207 # define GLIB_AVAILABLE_IN_2_32 GLIB_UNAVAILABLE(2, 32)
209 # define GLIB_AVAILABLE_IN_2_32
212 #endif /* __G_VERSION_MACROS_H__ */