canberra-gtk.h | canberra-gtk.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
WITHOUT ANY WARRANTY; without even the implied warranty of | WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Lesser General Public License for more details. | Lesser General Public License for more details. | |||
You should have received a copy of the GNU Lesser General Public | You should have received a copy of the GNU Lesser General Public | |||
License along with libcanberra. If not, see | License along with libcanberra. If not, see | |||
<http://www.gnu.org/licenses/>. | <http://www.gnu.org/licenses/>. | |||
***/ | ***/ | |||
#include <canberra.h> | #include <canberra.h> | |||
#include <gdk/gdk.h> | ||||
#include <gtk/gtk.h> | #include <gtk/gtk.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#ifndef GDK_MULTIHEAD_SAFE | #ifndef GDK_MULTIHEAD_SAFE | |||
ca_context *ca_gtk_context_get(void); | ca_context *ca_gtk_context_get(void); | |||
#endif | #endif | |||
ca_context *ca_gtk_context_get_for_screen(GdkScreen *screen); | ca_context *ca_gtk_context_get_for_screen(GdkScreen *screen); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
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 (29) | #define CA_MINOR (30) | |||
/** | /** | |||
* 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 | |||