Version checks

Version checks — Version information in the API.

Synopsis

#define             MM_MAJOR_VERSION
#define             MM_MINOR_VERSION
#define             MM_MICRO_VERSION
#define             MM_CHECK_VERSION                    (major,
                                                         minor,
                                                         micro)

Description

This section defines types that are used to identify the ModemManager version.

Details

MM_MAJOR_VERSION

#define MM_MAJOR_VERSION (1)

Evaluates to the major version number of ModemManager which this source is compiled against.


MM_MINOR_VERSION

#define MM_MINOR_VERSION (0)

Evaluates to the minor version number of ModemManager which this source is compiled against.


MM_MICRO_VERSION

#define MM_MICRO_VERSION (0)

Evaluates to the micro version number of ModemManager which this source compiled against.


MM_CHECK_VERSION()

#define             MM_CHECK_VERSION(major,minor,micro)

major :

major version (e.g. 1 for version 1.2.5)

minor :

minor version (e.g. 2 for version 1.2.5)

micro :

micro version (e.g. 5 for version 1.2.5)

Returns :

TRUE if the version of the ModemManager header files is the same as or newer than the passed-in version.