File: version.h

package info (click to toggle)
openbox 3.5.2-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 6,804 kB
  • sloc: ansic: 35,864; sh: 11,790; xml: 1,358; makefile: 595; python: 572; sed: 16
file content (15 lines) | stat: -rw-r--r-- 465 bytes parent folder | download | duplicates (3)
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 30
#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