Commit 61c4e1d4 authored by Olivier Aubert's avatar Olivier Aubert

libvlc.h: mark libvlc_errmsg and libvlc_clearerr with VLC_PUBLIC_API

parent b9a85c73
...@@ -125,14 +125,14 @@ VLC_PUBLIC_API void libvlc_exception_clear( libvlc_exception_t * ); ...@@ -125,14 +125,14 @@ VLC_PUBLIC_API void libvlc_exception_clear( libvlc_exception_t * );
* @warning * @warning
* This will be NULL if there was no error. * This will be NULL if there was no error.
*/ */
const char *libvlc_errmsg (void); VLC_PUBLIC_API const char *libvlc_errmsg (void);
/** /**
* Clears the LibVLC error status for the current thread. This is optional. * Clears the LibVLC error status for the current thread. This is optional.
* By default, the error status is automatically overriden when a new error * By default, the error status is automatically overriden when a new error
* occurs, and destroyed when the thread exits. * occurs, and destroyed when the thread exits.
*/ */
void libvlc_clearerr (void); VLC_PUBLIC_API void libvlc_clearerr (void);
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
......
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