 |
Ardour
8.12
|
Go to the documentation of this file.
27 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
31 #ifndef __GTK_VERSION_H__
32 #define __GTK_VERSION_H__
36 #define GTK_MAJOR_VERSION (2)
37 #define GTK_MINOR_VERSION (24)
38 #define GTK_MICRO_VERSION (33)
39 #define GTK_BINARY_AGE (2433)
40 #define GTK_INTERFACE_AGE (33)
45 #define GTK_CHECK_VERSION(major,minor,micro) \
46 (GTK_MAJOR_VERSION > (major) || \
47 (GTK_MAJOR_VERSION == (major) && GTK_MINOR_VERSION > (minor)) || \
48 (GTK_MAJOR_VERSION == (major) && GTK_MINOR_VERSION == (minor) && \
49 GTK_MICRO_VERSION >= (micro)))