summaryrefslogtreecommitdiffstats
path: root/libmpv/client.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-13 21:38:54 +0200
committerwm4 <wm4@nowhere>2014-10-13 23:54:19 +0200
commit1c5dbdbfc20868ba6a305921f23746878ec8b5af (patch)
tree8b95ce8d3b17a584e5a377620e586763ba86696b /libmpv/client.h
parentbe0896c173c6a9c651670d3d414a0f5abea764a1 (diff)
downloadmpv-1c5dbdbfc20868ba6a305921f23746878ec8b5af.tar.bz2
mpv-1c5dbdbfc20868ba6a305921f23746878ec8b5af.tar.xz
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.
Diffstat (limited to 'libmpv/client.h')
-rw-r--r--libmpv/client.h2
1 files changed, 1 insertions, 1 deletions
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.