From 1c5dbdbfc20868ba6a305921f23746878ec8b5af Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 13 Oct 2014 21:38:54 +0200 Subject: client API: add qthelper.hpp This provides some helper functions and classes for C++/Qt. As the top of qthelper.hpp says, this is built on top of the client API, and is a mere helper provided for convenience. Maybe this should be a separate library, but on the other hand I don't see much of a point in that. It's also header-only, but C++ people like such things. This makes it easier for us, because we don't need to care about ABI compatibility. The client API doesn't change, but bump it so that those who are using this header can declare a proper dependency. --- libmpv/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmpv/client.h') diff --git a/libmpv/client.h b/libmpv/client.h index 084f6e6e6c..7f545866aa 100644 --- a/libmpv/client.h +++ b/libmpv/client.h @@ -162,7 +162,7 @@ extern "C" { * relational operators (<, >, <=, >=). */ #define MPV_MAKE_VERSION(major, minor) (((major) << 16) | (minor) | 0UL) -#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 7) +#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 8) /** * Return the MPV_CLIENT_API_VERSION the mpv source has been compiled with. -- cgit v1.2.3