comparison libpurple/version.h.in @ 21911:1d8b7e42d9a4

disapproval of revision '846b73cefc86ff41042181a41f8ceaae6699c1f6'
author Will Thompson <will.thompson@collabora.co.uk>
date Fri, 21 Dec 2007 19:34:54 +0000
parents eb2e2585f917
children 76d025660d9e
comparison
equal deleted inserted replaced
21910:eb2e2585f917 21911:1d8b7e42d9a4
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 * Returns 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 guint purple_version_get_major(void);
60
61 /**
62 * Returns 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 guint purple_version_get_minor(void);
69 /**
70 *
71 * Returns the micro version of the running libpurple. Contrast with
72 * #PURPLE_MICRO_VERSION, which expands at compile time to the micro version of
73 * libpurple being compiled against.
74 *
75 * @since 2.4.0
76 */
77 guint purple_version_get_micro(void);
78
79 #ifdef __cplusplus 52 #ifdef __cplusplus
80 } 53 }
81 #endif 54 #endif
82 55
83 #endif /* _PURPLE_VERSION_H_ */ 56 #endif /* _PURPLE_VERSION_H_ */