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 (28) #define CA_MINOR (29)
/** /**
* 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

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/