Commit 438d66ae authored by Cheng Sun's avatar Cheng Sun Committed by Jean-Baptiste Kempf

Fix visibility of libvlc_printerr (missing LIBVLC_API)

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
(cherry picked from commit 7b9c0214)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 256e625a
......@@ -101,14 +101,14 @@ LIBVLC_API void libvlc_clearerr (void);
* Any previous error is overridden.
* \return a nul terminated string in any case
*/
const char *libvlc_vprinterr (const char *fmt, va_list ap);
LIBVLC_API const char *libvlc_vprinterr (const char *fmt, va_list ap);
/**
* Sets the LibVLC error status and message for the current thread.
* Any previous error is overridden.
* \return a nul terminated string in any case
*/
const char *libvlc_printerr (const char *fmt, ...);
LIBVLC_API const char *libvlc_printerr (const char *fmt, ...);
/**@} */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment