Commit 7b9c0214 authored by Cheng Sun's avatar Cheng Sun Committed by Rémi Denis-Courmont

Fix visibility of libvlc_printerr (missing LIBVLC_API)

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent a213f7f9
......@@ -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