Version information

Version information — Variables and functions to check the OGMRip and MPlayer versions

Synopsis




#define             OGMRIP_MAJOR_VERSION
#define             OGMRIP_MINOR_VERSION
#define             OGMRIP_MICRO_VERSION
#define             MPLAYER_MAJOR_VERSION
#define             MPLAYER_MINOR_VERSION
#define             MPLAYER_PRE_VERSION
#define             MPLAYER_RC_VERSION
#define             OGMRIP_CHECK_VERSION                (major,minor,micro)
#define             MPLAYER_CHECK_VERSION               (major,minor,rc,pre)

Description

Details

OGMRIP_MAJOR_VERSION

#define OGMRIP_MAJOR_VERSION       (0)

Compile time major version of OGMRip


OGMRIP_MINOR_VERSION

#define OGMRIP_MINOR_VERSION       (11)

Compile time minor version of OGMRip


OGMRIP_MICRO_VERSION

#define OGMRIP_MICRO_VERSION       (0)

Compile time micro version of OGMRip


MPLAYER_MAJOR_VERSION

#define MPLAYER_MAJOR_VERSION      (99)

Compile time major version of MPlayer


MPLAYER_MINOR_VERSION

#define MPLAYER_MINOR_VERSION      (99)

Compile time minor version of MPlayer


MPLAYER_PRE_VERSION

#define MPLAYER_PRE_VERSION        (99)

Compile time pre version of MPlayer


MPLAYER_RC_VERSION

#define MPLAYER_RC_VERSION         (99)

Compile time rc version of MPlayer


OGMRIP_CHECK_VERSION()

#define             OGMRIP_CHECK_VERSION(major,minor,micro)

Checks whether version is equal or greather than major.minor.micro

major : A major version number
minor : A minor version number
micro : A micro version number

MPLAYER_CHECK_VERSION()

#define             MPLAYER_CHECK_VERSION(major,minor,rc,pre)

Check if version is equal or greather than major.minor, major.minor-rc or major.minor-pre, in that order

major : A major version number
minor : A minor version number
rc : An rc version number
pre : A pre version number