comparison libpurple/version.h.in @ 21920:76d025660d9e

Export purple_*_version in version.h.
author Will Thompson <will.thompson@collabora.co.uk>
date Sat, 22 Dec 2007 11:40:34 +0000
parents 1d8b7e42d9a4
children bb43dea90623
comparison
equal deleted inserted replaced
21919:64aeaed21477 21920:76d025660d9e
47 * @return NULL if the versions are compatible, or a string describing 47 * @return NULL if the versions are compatible, or a string describing
48 * the version mismatch if not compatible. 48 * the version mismatch if not compatible.
49 */ 49 */
50 const char *purple_version_check(guint required_major, guint required_minor, guint required_micro); 50 const char *purple_version_check(guint required_major, guint required_minor, guint required_micro);
51 51
52 /**
53 * The major version of the running libpurple. Contrast with
54 * #PURPLE_MAJOR_VERSION, which expands at compile time to the major version of
55 * libpurple being compiled against.
56 *
57 * @since 2.4.0
58 */
59 extern const guint purple_major_version;
60
61 /**
62 * The minor version of the running libpurple. Contrast with
63 * #PURPLE_MINOR_VERSION, which expands at compile time to the minor version of
64 * libpurple being compiled against.
65 *
66 * @since 2.4.0
67 */
68 extern const guint purple_minor_version;
69
70 /**
71 *
72 * The micro version of the running libpurple. Contrast with
73 * #PURPLE_MICRO_VERSION, which expands at compile time to the micro version of
74 * libpurple being compiled against.
75 *
76 * @since 2.4.0
77 */
78 extern const guint purple_micro_version;
79
52 #ifdef __cplusplus 80 #ifdef __cplusplus
53 } 81 }
54 #endif 82 #endif
55 83
56 #endif /* _PURPLE_VERSION_H_ */ 84 #endif /* _PURPLE_VERSION_H_ */