mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-14 11:38:05 +02:00
Introduce version macros for 2.40
This commit is contained in:
parent
c8de2b11bb
commit
fbe3ce89a8
@ -107,6 +107,16 @@
|
|||||||
*/
|
*/
|
||||||
#define GLIB_VERSION_2_38 (G_ENCODE_VERSION (2, 38))
|
#define GLIB_VERSION_2_38 (G_ENCODE_VERSION (2, 38))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GLIB_VERSION_2_40:
|
||||||
|
*
|
||||||
|
* A macro that evaluates to the 2.38 version of GLib, in a format
|
||||||
|
* that can be used by the C pre-processor.
|
||||||
|
*
|
||||||
|
* Since: 2.40
|
||||||
|
*/
|
||||||
|
#define GLIB_VERSION_2_40 (G_ENCODE_VERSION (2, 40))
|
||||||
|
|
||||||
/* evaluates to the current stable version; for development cycles,
|
/* evaluates to the current stable version; for development cycles,
|
||||||
* this means the next stable target
|
* this means the next stable target
|
||||||
*/
|
*/
|
||||||
@ -296,4 +306,18 @@
|
|||||||
# define GLIB_AVAILABLE_IN_2_38 _GLIB_EXTERN
|
# define GLIB_AVAILABLE_IN_2_38 _GLIB_EXTERN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_40
|
||||||
|
# define GLIB_DEPRECATED_IN_2_40 GLIB_DEPRECATED
|
||||||
|
# define GLIB_DEPRECATED_IN_2_40_FOR(f) GLIB_DEPRECATED_FOR(f)
|
||||||
|
#else
|
||||||
|
# define GLIB_DEPRECATED_IN_2_40 _GLIB_EXTERN
|
||||||
|
# define GLIB_DEPRECATED_IN_2_40_FOR(f) _GLIB_EXTERN
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_40
|
||||||
|
# define GLIB_AVAILABLE_IN_2_40 GLIB_UNAVAILABLE(2, 40)
|
||||||
|
#else
|
||||||
|
# define GLIB_AVAILABLE_IN_2_40 _GLIB_EXTERN
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __G_VERSION_MACROS_H__ */
|
#endif /* __G_VERSION_MACROS_H__ */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user