version.h

Go to the documentation of this file.
00001 
00024 #ifndef _PURPLE_VERSION_H_
00025 #define _PURPLE_VERSION_H_
00026 
00027 #define PURPLE_MAJOR_VERSION (2)
00028 #define PURPLE_MINOR_VERSION (4)
00029 #define PURPLE_MICRO_VERSION (3)
00030 
00031 #define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \
00032                                      ((y) < PURPLE_MINOR_VERSION || \
00033                                       ((y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION)))
00034 
00035 #ifdef __cplusplus
00036 extern "C" {
00037 #endif
00038 
00050 const char *purple_version_check(guint required_major, guint required_minor, guint required_micro);
00051 
00059 extern const guint purple_major_version;
00060 
00068 extern const guint purple_minor_version;
00069 
00078 extern const guint purple_micro_version;
00079 
00080 #ifdef __cplusplus
00081 }
00082 #endif
00083 
00084 #endif /* _PURPLE_VERSION_H_ */
00085 

Generated on Thu Nov 12 20:45:48 2009 for pidgin by  doxygen 1.5.1