Version Information

Version Information — Helpers to determine the version of Talkatu being used.

Functions

Types and Values

Description

Macros for determine the version of talkatu that is being compiled against.

Functions

TALKATU_VERSION_CHECK()

#define             TALKATU_VERSION_CHECK(major,minor,micro)

A simple macro that will return true if the version of Talkatu that's being compiled against is newer than the provided version.

Parameters

major

The major version to check which must match.

 

minor

The minimum minor version to check.

 

micro

The minimum micro version to check.

 

Types and Values

TALKATU_MAJOR_VERSION

#define TALKATU_MAJOR_VERSION (0)

The major version of Talkatu that's being compiled against.


TALKATU_MINOR_VERSION

#define TALKATU_MINOR_VERSION (1)

The minor version of Talkatu that's being compiled against.


TALKATU_MICRO_VERSION

#define TALKATU_MICRO_VERSION (0)

The micro version of Talkatu that's being compiled against.


TALKATU_EXTRA_VERSION

#define TALKATU_EXTRA_VERSION "dev"

The extra version if any of Talkatu that's being compiled against.


TALKATU_VERSION

#define TALKATU_VERSION       "0.1.0-dev"

The full version of Talkatu that's being compiled against as a string.