canberra.h | canberra.h | |||
---|---|---|---|---|
skipping to change at line 49 | skipping to change at line 49 | |||
* | * | |||
* 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 (15) | #define CA_MINOR (16) | |||
/** | /** | |||
* 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))) | |||
skipping to change at line 488 | skipping to change at line 488 | |||
int ca_context_change_device(ca_context *c, const char *device); | int ca_context_change_device(ca_context *c, const char *device); | |||
int ca_context_open(ca_context *c); | int ca_context_open(ca_context *c); | |||
int ca_context_destroy(ca_context *c); | int ca_context_destroy(ca_context *c); | |||
int ca_context_change_props(ca_context *c, ...) __attribute__((sentinel)); | int ca_context_change_props(ca_context *c, ...) __attribute__((sentinel)); | |||
int ca_context_change_props_full(ca_context *c, ca_proplist *p); | int ca_context_change_props_full(ca_context *c, ca_proplist *p); | |||
int ca_context_play_full(ca_context *c, uint32_t id, ca_proplist *p, ca_fin ish_callback_t cb, void *userdata); | int ca_context_play_full(ca_context *c, uint32_t id, ca_proplist *p, ca_fin ish_callback_t cb, void *userdata); | |||
int ca_context_play(ca_context *c, uint32_t id, ...) __attribute__((sentine l)); | int ca_context_play(ca_context *c, uint32_t id, ...) __attribute__((sentine l)); | |||
int ca_context_cache_full(ca_context *c, ca_proplist *p); | int ca_context_cache_full(ca_context *c, ca_proplist *p); | |||
int ca_context_cache(ca_context *c, ...) __attribute__((sentinel)); | int ca_context_cache(ca_context *c, ...) __attribute__((sentinel)); | |||
int ca_context_cancel(ca_context *c, uint32_t id); | int ca_context_cancel(ca_context *c, uint32_t id); | |||
int ca_context_playing(ca_context *c, uint32_t id, int *playing); | ||||
const char *ca_strerror(int code); | const char *ca_strerror(int code); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||