Add flexible API version boundaries
[platform/upstream/glib.git] / glib / gversionmacros.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 /*
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/.
25  */
26
27 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
29 #endif
30
31 #ifndef __G_VERSION_MACROS_H__
32 #define __G_VERSION_MACROS_H__
33
34 /* Version boundaries checks */
35
36 #define G_ENCODE_VERSION(major,minor)   ((major) << 16 | (minor) << 8)
37
38 /* XXX: Every new stable minor release bump should add a macro here */
39
40 /**
41  * GLIB_VERSION_2_26:
42  *
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.
45  *
46  * Since: 2.32
47  */
48 #define GLIB_VERSION_2_26       (G_ENCODE_VERSION (2, 26))
49
50 /**
51  * GLIB_VERSION_2_28:
52  *
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.
55  *
56  * Since: 2.32
57  */
58 #define GLIB_VERSION_2_28       (G_ENCODE_VERSION (2, 28))
59
60 /**
61  * GLIB_VERSION_2_30:
62  *
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.
65  *
66  * Since: 2.32
67  */
68 #define GLIB_VERSION_2_30       (G_ENCODE_VERSION (2, 30))
69
70 /**
71  * GLIB_VERSION_2_32:
72  *
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.
75  *
76  * Since: 2.32
77  */
78 #define GLIB_VERSION_2_32       (G_ENCODE_VERSION (2, 32))
79
80 /* evaluates to the current stable version; for development cycles,
81  * this means the next stable target
82  */
83 #if (GLIB_MINOR_VERSION % 2)
84 #define GLIB_VERSION_CUR_STABLE         (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION + 1))
85 #else
86 #define GLIB_VERSION_CUR_STABLE         (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION))
87 #endif
88
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))
92 #else
93 #define GLIB_VERSION_PREV_STABLE        (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 2))
94 #endif
95
96 /**
97  * GLIB_VERSION_MIN_REQUIRED:
98  *
99  * A macro that should be defined by the user prior to including
100  * the glib.h header.
101  * The definition should be one of the predefined GLib version
102  * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
103  *
104  * This macro defines the lower bound for the GLib API to use.
105  *
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.
109  *
110  * Since: 2.32
111  */
112 #ifndef GLIB_VERSION_MIN_REQUIRED
113 # define GLIB_VERSION_MIN_REQUIRED      (GLIB_VERSION_PREV_STABLE)
114 #endif
115
116 /**
117  * GLIB_VERSION_MAX_ALLOWED:
118  *
119  * A macro that should be defined by the user prior to including
120  * the glib.h header.
121  * The definition should be one of the predefined GLib version
122  * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
123  *
124  * This macro defines the upper bound for the GLib API to use.
125  *
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.
129  *
130  * Since: 2.32
131  */
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
135 # else
136 #  define GLIB_VERSION_MAX_ALLOWED      GLIB_VERSION_CUR_STABLE
137 # endif
138 #endif
139
140 /* sanity checks */
141 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_MIN_REQUIRED
142 #error "GLIB_VERSION_MAX_ALLOWED must be >= GLIB_VERSION_MIN_REQUIRED"
143 #endif
144 #if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_26
145 #error "GLIB_VERSION_MIN_REQUIRED must be >= GLIB_VERSION_2_26"
146 #endif
147
148 /* XXX: Every new stable minor release should add a set of macros here */
149
150 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_26
151 # define GLIB_DEPRECATED_IN_2_26                GLIB_DEPRECATED
152 # define GLIB_DEPRECATED_IN_2_26_FOR(f)         GLIB_DEPRECATED_FOR(f)
153 #else
154 # define GLIB_DEPRECATED_IN_2_26
155 # define GLIB_DEPRECATED_IN_2_26_FOR(f)
156 #endif
157
158 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_26
159 # define GLIB_AVAILABLE_IN_2_26                 GLIB_UNAVAILABLE(2, 26)
160 #else
161 # define GLIB_AVAILABLE_IN_2_26
162 #endif
163
164 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_28
165 # define GLIB_DEPRECATED_IN_2_28                GLIB_DEPRECATED
166 # define GLIB_DEPRECATED_IN_2_28_FOR(f)         GLIB_DEPRECATED_FOR(f)
167 #else
168 # define GLIB_DEPRECATED_IN_2_28
169 # define GLIB_DEPRECATED_IN_2_28_FOR(f)
170 #endif
171
172 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_28
173 # define GLIB_AVAILABLE_IN_2_28                 GLIB_UNAVAILABLE(2, 28)
174 #else
175 # define GLIB_AVAILABLE_IN_2_28
176 #endif
177
178 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_30
179 # define GLIB_DEPRECATED_IN_2_30                GLIB_DEPRECATED
180 # define GLIB_DEPRECATED_IN_2_30_FOR(f)         GLIB_DEPRECATED_FOR(f)
181 #else
182 # define GLIB_DEPRECATED_IN_2_30
183 # define GLIB_DEPRECATED_IN_2_30_FOR(f)
184 #endif
185
186 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_30
187 # define GLIB_AVAILABLE_IN_2_30                 GLIB_UNAVAILABLE(2, 30)
188 #else
189 # define GLIB_AVAILABLE_IN_2_30
190 #endif
191
192 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_32
193 # define GLIB_DEPRECATED_IN_2_32                GLIB_DEPRECATED
194 # define GLIB_DEPRECATED_IN_2_32_FOR(f)         GLIB_DEPRECATED_FOR(f)
195 #else
196 # define GLIB_DEPRECATED_IN_2_32
197 # define GLIB_DEPRECATED_IN_2_32_FOR(f)
198 #endif
199
200 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_32
201 # define GLIB_AVAILABLE_IN_2_32                 GLIB_UNAVAILABLE(2, 32)
202 #else
203 # define GLIB_AVAILABLE_IN_2_32
204 #endif
205
206 #endif /*  __G_VERSION_MACROS_H__ */