gdk: Add deprecation/availability macros for 3.6

This commit is contained in:
Benjamin Otte 2012-03-16 01:23:26 +01:00
parent 1de2e3ce00
commit a52336bedc

View File

@ -193,4 +193,18 @@
# define GDK_AVAILABLE_IN_3_4
#endif
#if GDK_VERSION_MIN_REQUIRED >= GDK_VERSION_3_6
# define GDK_DEPRECATED_IN_3_6 GDK_DEPRECATED
# define GDK_DEPRECATED_IN_3_6_FOR(f) GDK_DEPRECATED_FOR(f)
#else
# define GDK_DEPRECATED_IN_3_6
# define GDK_DEPRECATED_IN_3_6_FOR(f)
#endif
#if GDK_VERSION_MAX_ALLOWED < GDK_VERSION_3_6
# define GDK_AVAILABLE_IN_3_6 GDK_UNAVAILABLE(3, 6)
#else
# define GDK_AVAILABLE_IN_3_6
#endif
#endif /* __GDK_VERSION_MACROS_H__ */