From f08db00d2613dd96900a85f0e2080aee89bafc4c Mon Sep 17 00:00:00 2001 From: Dudemanguy Date: Sat, 27 Nov 2021 22:46:54 -0600 Subject: client API: also export mpv_client_api_version 20c4036daa680ebf9d379c9a7566bcf3ae12d405 switched to using symbol visibility attributes for mpv client api functions (for the meson build at least). Unfortunately mpv_client_api_version was mistakenly missed. We need to export this function as well. Fixes #9531. --- libmpv/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpv/client.h b/libmpv/client.h index 79d994c45a..5a3d2d202e 100644 --- a/libmpv/client.h +++ b/libmpv/client.h @@ -259,7 +259,7 @@ extern "C" { /** * Return the MPV_CLIENT_API_VERSION the mpv source has been compiled with. */ -unsigned long mpv_client_api_version(void); +MPV_EXPORT unsigned long mpv_client_api_version(void); /** * Client context used by the client API. Every client has its own private -- cgit v1.2.3