pidgin 2.14.14dev
version.h
Go to the documentation of this file.
1
24#ifndef _PURPLE_VERSION_H_
25#define _PURPLE_VERSION_H_
26
28#define PURPLE_MAJOR_VERSION (2)
30#define PURPLE_MINOR_VERSION (14)
32#define PURPLE_MICRO_VERSION (14)
33
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)))
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
53const char *purple_version_check(guint required_major, guint required_minor, guint required_micro);
54
62extern const guint purple_major_version;
63
71extern const guint purple_minor_version;
72
81extern const guint purple_micro_version;
82
83#ifdef __cplusplus
84}
85#endif
86
87#endif /* _PURPLE_VERSION_H_ */
88
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.