File: version.h

package info (click to toggle)
openbox 3.5.0-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,256 kB
  • sloc: ansic: 35,080; sh: 10,641; xml: 1,358; makefile: 577; python: 572; sed: 16
file content (15 lines) | stat: -rw-r--r-- 465 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef rr__version_h
#define rr__version_h

#define RR_MAJOR_VERSION 3
#define RR_MINOR_VERSION 5
#define RR_MICRO_VERSION 28
#define RR_VERSION RR_MAJOR_VERSION.RR_MINOR_VERSION.RR_MICRO_VERSION

#define RR_CHECK_VERSION(major,minor,micro) \
    (RR_MAJOR_VERSION > (major) || \
     (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION > (minor)) || \
     (RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION == (minor) && \
      RR_MICRO_VERSION >= (micro)))

#endif