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, see <http://www.gnu.org/licenses/>.
19 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
20 * file for a list of people on the GLib Team. See the ChangeLog
21 * files for a list of changes. These files are distributed with
22 * GLib at ftp://ftp.gtk.org/pub/gtk/.
25 #ifndef __G_VERSION_MACROS_H__
26 #define __G_VERSION_MACROS_H__
28 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
29 #error "Only <glib.h> can be included directly."
32 /* Version boundaries checks */
34 #define G_ENCODE_VERSION(major,minor) ((major) << 16 | (minor) << 8)
36 /* XXX: Every new stable minor release bump should add a macro here */
41 * A macro that evaluates to the 2.26 version of GLib, in a format
42 * that can be used by the C pre-processor.
46 #define GLIB_VERSION_2_26 (G_ENCODE_VERSION (2, 26))
51 * A macro that evaluates to the 2.28 version of GLib, in a format
52 * that can be used by the C pre-processor.
56 #define GLIB_VERSION_2_28 (G_ENCODE_VERSION (2, 28))
61 * A macro that evaluates to the 2.30 version of GLib, in a format
62 * that can be used by the C pre-processor.
66 #define GLIB_VERSION_2_30 (G_ENCODE_VERSION (2, 30))
71 * A macro that evaluates to the 2.32 version of GLib, in a format
72 * that can be used by the C pre-processor.
76 #define GLIB_VERSION_2_32 (G_ENCODE_VERSION (2, 32))
81 * A macro that evaluates to the 2.34 version of GLib, in a format
82 * that can be used by the C pre-processor.
86 #define GLIB_VERSION_2_34 (G_ENCODE_VERSION (2, 34))
91 * A macro that evaluates to the 2.36 version of GLib, in a format
92 * that can be used by the C pre-processor.
96 #define GLIB_VERSION_2_36 (G_ENCODE_VERSION (2, 36))
101 * A macro that evaluates to the 2.38 version of GLib, in a format
102 * that can be used by the C pre-processor.
106 #define GLIB_VERSION_2_38 (G_ENCODE_VERSION (2, 38))
111 * A macro that evaluates to the 2.40 version of GLib, in a format
112 * that can be used by the C pre-processor.
116 #define GLIB_VERSION_2_40 (G_ENCODE_VERSION (2, 40))
121 * A macro that evaluates to the 2.42 version of GLib, in a format
122 * that can be used by the C pre-processor.
126 #define GLIB_VERSION_2_42 (G_ENCODE_VERSION (2, 42))
131 * A macro that evaluates to the 2.44 version of GLib, in a format
132 * that can be used by the C pre-processor.
136 #define GLIB_VERSION_2_44 (G_ENCODE_VERSION (2, 44))
141 * A macro that evaluates to the 2.46 version of GLib, in a format
142 * that can be used by the C pre-processor.
146 #define GLIB_VERSION_2_46 (G_ENCODE_VERSION (2, 46))
151 * A macro that evaluates to the 2.48 version of GLib, in a format
152 * that can be used by the C pre-processor.
156 #define GLIB_VERSION_2_48 (G_ENCODE_VERSION (2, 48))
161 * A macro that evaluates to the 2.50 version of GLib, in a format
162 * that can be used by the C pre-processor.
166 #define GLIB_VERSION_2_50 (G_ENCODE_VERSION (2, 50))
168 /* evaluates to the current stable version; for development cycles,
169 * this means the next stable target
171 #if (GLIB_MINOR_VERSION % 2)
172 #define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION + 1))
174 #define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION))
177 /* evaluates to the previous stable version */
178 #if (GLIB_MINOR_VERSION % 2)
179 #define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 1))
181 #define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 2))
185 * GLIB_VERSION_MIN_REQUIRED:
187 * A macro that should be defined by the user prior to including
189 * The definition should be one of the predefined GLib version
190 * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
192 * This macro defines the earliest version of GLib that the package is
193 * required to be able to compile against.
195 * If the compiler is configured to warn about the use of deprecated
196 * functions, then using functions that were deprecated in version
197 * %GLIB_VERSION_MIN_REQUIRED or earlier will cause warnings (but
198 * using functions deprecated in later releases will not).
202 /* If the package sets GLIB_VERSION_MIN_REQUIRED to some future
203 * GLIB_VERSION_X_Y value that we don't know about, it will compare as
204 * 0 in preprocessor tests.
206 #ifndef GLIB_VERSION_MIN_REQUIRED
207 # define GLIB_VERSION_MIN_REQUIRED (GLIB_VERSION_CUR_STABLE)
208 #elif GLIB_VERSION_MIN_REQUIRED == 0
209 # undef GLIB_VERSION_MIN_REQUIRED
210 # define GLIB_VERSION_MIN_REQUIRED (GLIB_VERSION_CUR_STABLE + 2)
214 * GLIB_VERSION_MAX_ALLOWED:
216 * A macro that should be defined by the user prior to including
218 * The definition should be one of the predefined GLib version
219 * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
221 * This macro defines the latest version of the GLib API that the
222 * package is allowed to make use of.
224 * If the compiler is configured to warn about the use of deprecated
225 * functions, then using functions added after version
226 * %GLIB_VERSION_MAX_ALLOWED will cause warnings.
228 * Unless you are using GLIB_CHECK_VERSION() or the like to compile
229 * different code depending on the GLib version, then this should be
230 * set to the same value as %GLIB_VERSION_MIN_REQUIRED.
234 #if !defined (GLIB_VERSION_MAX_ALLOWED) || (GLIB_VERSION_MAX_ALLOWED == 0)
235 # undef GLIB_VERSION_MAX_ALLOWED
236 # define GLIB_VERSION_MAX_ALLOWED (GLIB_VERSION_CUR_STABLE)
240 #if GLIB_VERSION_MIN_REQUIRED > GLIB_VERSION_CUR_STABLE
241 #error "GLIB_VERSION_MIN_REQUIRED must be <= GLIB_VERSION_CUR_STABLE"
243 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_MIN_REQUIRED
244 #error "GLIB_VERSION_MAX_ALLOWED must be >= GLIB_VERSION_MIN_REQUIRED"
246 #if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_26
247 #error "GLIB_VERSION_MIN_REQUIRED must be >= GLIB_VERSION_2_26"
250 /* These macros are used to mark deprecated functions in GLib headers,
251 * and thus have to be exposed in installed headers. But please
252 * do *not* use them in other projects. Instead, use G_DEPRECATED
253 * or define your own wrappers around it.
255 #define GLIB_AVAILABLE_IN_ALL _GLIB_EXTERN
257 /* XXX: Every new stable minor release should add a set of macros here */
259 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_26
260 # define GLIB_DEPRECATED_IN_2_26 GLIB_DEPRECATED
261 # define GLIB_DEPRECATED_IN_2_26_FOR(f) GLIB_DEPRECATED_FOR(f)
263 # define GLIB_DEPRECATED_IN_2_26 _GLIB_EXTERN
264 # define GLIB_DEPRECATED_IN_2_26_FOR(f) _GLIB_EXTERN
267 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_26
268 # define GLIB_AVAILABLE_IN_2_26 GLIB_UNAVAILABLE(2, 26)
270 # define GLIB_AVAILABLE_IN_2_26 _GLIB_EXTERN
273 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_28
274 # define GLIB_DEPRECATED_IN_2_28 GLIB_DEPRECATED
275 # define GLIB_DEPRECATED_IN_2_28_FOR(f) GLIB_DEPRECATED_FOR(f)
277 # define GLIB_DEPRECATED_IN_2_28 _GLIB_EXTERN
278 # define GLIB_DEPRECATED_IN_2_28_FOR(f) _GLIB_EXTERN
281 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_28
282 # define GLIB_AVAILABLE_IN_2_28 GLIB_UNAVAILABLE(2, 28)
284 # define GLIB_AVAILABLE_IN_2_28 _GLIB_EXTERN
287 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_30
288 # define GLIB_DEPRECATED_IN_2_30 GLIB_DEPRECATED
289 # define GLIB_DEPRECATED_IN_2_30_FOR(f) GLIB_DEPRECATED_FOR(f)
291 # define GLIB_DEPRECATED_IN_2_30 _GLIB_EXTERN
292 # define GLIB_DEPRECATED_IN_2_30_FOR(f) _GLIB_EXTERN
295 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_30
296 # define GLIB_AVAILABLE_IN_2_30 GLIB_UNAVAILABLE(2, 30)
298 # define GLIB_AVAILABLE_IN_2_30 _GLIB_EXTERN
301 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_32
302 # define GLIB_DEPRECATED_IN_2_32 GLIB_DEPRECATED
303 # define GLIB_DEPRECATED_IN_2_32_FOR(f) GLIB_DEPRECATED_FOR(f)
305 # define GLIB_DEPRECATED_IN_2_32 _GLIB_EXTERN
306 # define GLIB_DEPRECATED_IN_2_32_FOR(f) _GLIB_EXTERN
309 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_32
310 # define GLIB_AVAILABLE_IN_2_32 GLIB_UNAVAILABLE(2, 32)
312 # define GLIB_AVAILABLE_IN_2_32 _GLIB_EXTERN
315 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_34
316 # define GLIB_DEPRECATED_IN_2_34 GLIB_DEPRECATED
317 # define GLIB_DEPRECATED_IN_2_34_FOR(f) GLIB_DEPRECATED_FOR(f)
319 # define GLIB_DEPRECATED_IN_2_34 _GLIB_EXTERN
320 # define GLIB_DEPRECATED_IN_2_34_FOR(f) _GLIB_EXTERN
323 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_34
324 # define GLIB_AVAILABLE_IN_2_34 GLIB_UNAVAILABLE(2, 34)
326 # define GLIB_AVAILABLE_IN_2_34 _GLIB_EXTERN
329 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_36
330 # define GLIB_DEPRECATED_IN_2_36 GLIB_DEPRECATED
331 # define GLIB_DEPRECATED_IN_2_36_FOR(f) GLIB_DEPRECATED_FOR(f)
333 # define GLIB_DEPRECATED_IN_2_36 _GLIB_EXTERN
334 # define GLIB_DEPRECATED_IN_2_36_FOR(f) _GLIB_EXTERN
337 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_36
338 # define GLIB_AVAILABLE_IN_2_36 GLIB_UNAVAILABLE(2, 36)
340 # define GLIB_AVAILABLE_IN_2_36 _GLIB_EXTERN
343 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_38
344 # define GLIB_DEPRECATED_IN_2_38 GLIB_DEPRECATED
345 # define GLIB_DEPRECATED_IN_2_38_FOR(f) GLIB_DEPRECATED_FOR(f)
347 # define GLIB_DEPRECATED_IN_2_38 _GLIB_EXTERN
348 # define GLIB_DEPRECATED_IN_2_38_FOR(f) _GLIB_EXTERN
351 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38
352 # define GLIB_AVAILABLE_IN_2_38 GLIB_UNAVAILABLE(2, 38)
354 # define GLIB_AVAILABLE_IN_2_38 _GLIB_EXTERN
357 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_40
358 # define GLIB_DEPRECATED_IN_2_40 GLIB_DEPRECATED
359 # define GLIB_DEPRECATED_IN_2_40_FOR(f) GLIB_DEPRECATED_FOR(f)
361 # define GLIB_DEPRECATED_IN_2_40 _GLIB_EXTERN
362 # define GLIB_DEPRECATED_IN_2_40_FOR(f) _GLIB_EXTERN
365 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_40
366 # define GLIB_AVAILABLE_IN_2_40 GLIB_UNAVAILABLE(2, 40)
368 # define GLIB_AVAILABLE_IN_2_40 _GLIB_EXTERN
371 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_42
372 # define GLIB_DEPRECATED_IN_2_42 GLIB_DEPRECATED
373 # define GLIB_DEPRECATED_IN_2_42_FOR(f) GLIB_DEPRECATED_FOR(f)
375 # define GLIB_DEPRECATED_IN_2_42 _GLIB_EXTERN
376 # define GLIB_DEPRECATED_IN_2_42_FOR(f) _GLIB_EXTERN
379 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_42
380 # define GLIB_AVAILABLE_IN_2_42 GLIB_UNAVAILABLE(2, 42)
382 # define GLIB_AVAILABLE_IN_2_42 _GLIB_EXTERN
385 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_44
386 # define GLIB_DEPRECATED_IN_2_44 GLIB_DEPRECATED
387 # define GLIB_DEPRECATED_IN_2_44_FOR(f) GLIB_DEPRECATED_FOR(f)
389 # define GLIB_DEPRECATED_IN_2_44 _GLIB_EXTERN
390 # define GLIB_DEPRECATED_IN_2_44_FOR(f) _GLIB_EXTERN
393 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_44
394 # define GLIB_AVAILABLE_IN_2_44 GLIB_UNAVAILABLE(2, 44)
396 # define GLIB_AVAILABLE_IN_2_44 _GLIB_EXTERN
399 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_46
400 # define GLIB_DEPRECATED_IN_2_46 GLIB_DEPRECATED
401 # define GLIB_DEPRECATED_IN_2_46_FOR(f) GLIB_DEPRECATED_FOR(f)
403 # define GLIB_DEPRECATED_IN_2_46 _GLIB_EXTERN
404 # define GLIB_DEPRECATED_IN_2_46_FOR(f) _GLIB_EXTERN
407 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_46
408 # define GLIB_AVAILABLE_IN_2_46 GLIB_UNAVAILABLE(2, 46)
410 # define GLIB_AVAILABLE_IN_2_46 _GLIB_EXTERN
413 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_48
414 # define GLIB_DEPRECATED_IN_2_48 GLIB_DEPRECATED
415 # define GLIB_DEPRECATED_IN_2_48_FOR(f) GLIB_DEPRECATED_FOR(f)
417 # define GLIB_DEPRECATED_IN_2_48 _GLIB_EXTERN
418 # define GLIB_DEPRECATED_IN_2_48_FOR(f) _GLIB_EXTERN
421 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_48
422 # define GLIB_AVAILABLE_IN_2_48 GLIB_UNAVAILABLE(2, 48)
424 # define GLIB_AVAILABLE_IN_2_48 _GLIB_EXTERN
427 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_50
428 # define GLIB_DEPRECATED_IN_2_50 GLIB_DEPRECATED
429 # define GLIB_DEPRECATED_IN_2_50_FOR(f) GLIB_DEPRECATED_FOR(f)
431 # define GLIB_DEPRECATED_IN_2_50 _GLIB_EXTERN
432 # define GLIB_DEPRECATED_IN_2_50_FOR(f) _GLIB_EXTERN
435 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_50
436 # define GLIB_AVAILABLE_IN_2_50 GLIB_UNAVAILABLE(2, 50)
438 # define GLIB_AVAILABLE_IN_2_50 _GLIB_EXTERN
441 #endif /* __G_VERSION_MACROS_H__ */