Add version macros for 2.34
[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 /**
81  * GLIB_VERSION_2_34:
82  *
83  * A macro that evaluates to the 2.34 version of GLib, in a format
84  * that can be used by the C pre-processor.
85  *
86  * Since: 2.34
87  */
88 #define GLIB_VERSION_2_34       (G_ENCODE_VERSION (2, 34))
89
90 /* evaluates to the current stable version; for development cycles,
91  * this means the next stable target
92  */
93 #if (GLIB_MINOR_VERSION % 2)
94 #define GLIB_VERSION_CUR_STABLE         (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION + 1))
95 #else
96 #define GLIB_VERSION_CUR_STABLE         (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION))
97 #endif
98
99 /* evaluates to the previous stable version */
100 #if (GLIB_MINOR_VERSION % 2)
101 #define GLIB_VERSION_PREV_STABLE        (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 1))
102 #else
103 #define GLIB_VERSION_PREV_STABLE        (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 2))
104 #endif
105
106 /**
107  * GLIB_VERSION_MIN_REQUIRED:
108  *
109  * A macro that should be defined by the user prior to including
110  * the glib.h header.
111  * The definition should be one of the predefined GLib version
112  * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
113  *
114  * This macro defines the lower bound for the GLib API to use.
115  *
116  * If a function has been deprecated in a newer version of GLib,
117  * it is possible to use this symbol to avoid the compiler warnings
118  * without disabling warning for every deprecated function.
119  *
120  * Since: 2.32
121  */
122 #ifndef GLIB_VERSION_MIN_REQUIRED
123 # define GLIB_VERSION_MIN_REQUIRED      (GLIB_VERSION_PREV_STABLE)
124 #endif
125
126 /**
127  * GLIB_VERSION_MAX_ALLOWED:
128  *
129  * A macro that should be defined by the user prior to including
130  * the glib.h header.
131  * The definition should be one of the predefined GLib version
132  * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
133  *
134  * This macro defines the upper bound for the GLib API to use.
135  *
136  * If a function has been introduced in a newer version of GLib,
137  * it is possible to use this symbol to get compiler warnings when
138  * trying to use that function.
139  *
140  * Since: 2.32
141  */
142 #ifndef GLIB_VERSION_MAX_ALLOWED
143 # if GLIB_VERSION_MIN_REQUIRED > GLIB_VERSION_PREV_STABLE
144 #  define GLIB_VERSION_MAX_ALLOWED      GLIB_VERSION_MIN_REQUIRED
145 # else
146 #  define GLIB_VERSION_MAX_ALLOWED      GLIB_VERSION_CUR_STABLE
147 # endif
148 #endif
149
150 /* sanity checks */
151 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_MIN_REQUIRED
152 #error "GLIB_VERSION_MAX_ALLOWED must be >= GLIB_VERSION_MIN_REQUIRED"
153 #endif
154 #if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_26
155 #error "GLIB_VERSION_MIN_REQUIRED must be >= GLIB_VERSION_2_26"
156 #endif
157
158 /* These macros are used to mark deprecated functions in GLib headers,
159  * and thus have to be exposed in installed headers. But please
160  * do *not* use them in other projects. Instead, use G_DEPRECATED
161  * or define your own wrappers around it.
162  */
163
164 /* XXX: Every new stable minor release should add a set of macros here */
165
166 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_26
167 # define GLIB_DEPRECATED_IN_2_26                GLIB_DEPRECATED
168 # define GLIB_DEPRECATED_IN_2_26_FOR(f)         GLIB_DEPRECATED_FOR(f)
169 #else
170 # define GLIB_DEPRECATED_IN_2_26
171 # define GLIB_DEPRECATED_IN_2_26_FOR(f)
172 #endif
173
174 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_26
175 # define GLIB_AVAILABLE_IN_2_26                 GLIB_UNAVAILABLE(2, 26)
176 #else
177 # define GLIB_AVAILABLE_IN_2_26
178 #endif
179
180 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_28
181 # define GLIB_DEPRECATED_IN_2_28                GLIB_DEPRECATED
182 # define GLIB_DEPRECATED_IN_2_28_FOR(f)         GLIB_DEPRECATED_FOR(f)
183 #else
184 # define GLIB_DEPRECATED_IN_2_28
185 # define GLIB_DEPRECATED_IN_2_28_FOR(f)
186 #endif
187
188 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_28
189 # define GLIB_AVAILABLE_IN_2_28                 GLIB_UNAVAILABLE(2, 28)
190 #else
191 # define GLIB_AVAILABLE_IN_2_28
192 #endif
193
194 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_30
195 # define GLIB_DEPRECATED_IN_2_30                GLIB_DEPRECATED
196 # define GLIB_DEPRECATED_IN_2_30_FOR(f)         GLIB_DEPRECATED_FOR(f)
197 #else
198 # define GLIB_DEPRECATED_IN_2_30
199 # define GLIB_DEPRECATED_IN_2_30_FOR(f)
200 #endif
201
202 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_30
203 # define GLIB_AVAILABLE_IN_2_30                 GLIB_UNAVAILABLE(2, 30)
204 #else
205 # define GLIB_AVAILABLE_IN_2_30
206 #endif
207
208 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_32
209 # define GLIB_DEPRECATED_IN_2_32                GLIB_DEPRECATED
210 # define GLIB_DEPRECATED_IN_2_32_FOR(f)         GLIB_DEPRECATED_FOR(f)
211 #else
212 # define GLIB_DEPRECATED_IN_2_32
213 # define GLIB_DEPRECATED_IN_2_32_FOR(f)
214 #endif
215
216 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_32
217 # define GLIB_AVAILABLE_IN_2_32                 GLIB_UNAVAILABLE(2, 32)
218 #else
219 # define GLIB_AVAILABLE_IN_2_32
220 #endif
221
222 #if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_34
223 # define GLIB_DEPRECATED_IN_2_34                GLIB_DEPRECATED
224 # define GLIB_DEPRECATED_IN_2_34_FOR(f)         GLIB_DEPRECATED_FOR(f)
225 #else
226 # define GLIB_DEPRECATED_IN_2_34
227 # define GLIB_DEPRECATED_IN_2_34_FOR(f)
228 #endif
229
230 #if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_34
231 # define GLIB_AVAILABLE_IN_2_34                 GLIB_UNAVAILABLE(2, 34)
232 #else
233 # define GLIB_AVAILABLE_IN_2_34
234 #endif
235
236 #endif /*  __G_VERSION_MACROS_H__ */