24#ifndef _PURPLE_VERSION_H_
25#define _PURPLE_VERSION_H_
28#define PURPLE_MAJOR_VERSION (2)
30#define PURPLE_MINOR_VERSION (14)
32#define PURPLE_MICRO_VERSION (14)
34#define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \
35 ((y) < PURPLE_MINOR_VERSION || \
36 ((y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION)))
const guint purple_minor_version
The minor version of the running libpurple.
const char * purple_version_check(guint required_major, guint required_minor, guint required_micro)
Checks that the libpurple version is compatible with the requested version.
const guint purple_micro_version
The micro version of the running libpurple.
const guint purple_major_version
The major version of the running libpurple.