]> Dogcows Code - chaz/openbox/blob - render/version.h.in
0ff30b573f1e27864731c7d13b2dfb5a0cd94dc6
[chaz/openbox] / render / version.h.in
1 #ifndef rr__version_h
2 #define rr__version_h
3
4 #define RR_MAJOR_VERSION @RR_MAJOR_VERSION@
5 #define RR_MINOR_VERSION @RR_MINOR_VERSION@
6 #define RR_MICRO_VERSION @RR_MICRO_VERSION@
7 #define RR_VERSION RR_MAJOR_VERSION.RR_MINOR_VERSION.RR_MICRO_VERSION
8
9 #define RR_CHECK_VERSION(major,minor,micro) \
10 (RR_MAJOR_VERSION > (major) || \
11 (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION > (minor)) || \
12 (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION == (minor) && \
13 RR_MICRO_VERSION >= (micro)))
14
15 #endif
This page took 0.037108 seconds and 3 git commands to generate.