canberra.h | canberra.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
* | * | |||
* Evaluates to the major version number of libcanberra. | * Evaluates to the major version number of libcanberra. | |||
*/ | */ | |||
#define CA_MAJOR (0) | #define CA_MAJOR (0) | |||
/** | /** | |||
* CA_MINOR: | * CA_MINOR: | |||
* | * | |||
* Evaluates to the minor version number of libcanberra. | * Evaluates to the minor version number of libcanberra. | |||
*/ | */ | |||
#define CA_MINOR (23) | #define CA_MINOR (24) | |||
/** | /** | |||
* CA_CHECK_VERSION: | * CA_CHECK_VERSION: | |||
* | * | |||
* Evaluates to TRUE when the library version is newer than the | * Evaluates to TRUE when the library version is newer than the | |||
* specified parameters. | * specified parameters. | |||
*/ | */ | |||
#define CA_CHECK_VERSION(major,minor) \ | #define CA_CHECK_VERSION(major,minor) \ | |||
((CA_MAJOR > (major)) || \ | ((CA_MAJOR > (major)) || \ | |||
(CA_MAJOR == (major) && CA_MINOR >= (minor))) | (CA_MAJOR == (major) && CA_MINOR >= (minor))) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||