]> git.sesse.net Git - vlc/commitdiff
libvlc.h: mark libvlc_errmsg and libvlc_clearerr with VLC_PUBLIC_API
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Thu, 3 Sep 2009 08:49:07 +0000 (10:49 +0200)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Thu, 3 Sep 2009 08:53:09 +0000 (10:53 +0200)
include/vlc/libvlc.h

index 1171dc8aaa014fa140db5ca4787b706b3e49a150..2e8b334df0bdc831926156dbf6b3a76e650e9fee 100644 (file)
@@ -125,14 +125,14 @@ VLC_PUBLIC_API void libvlc_exception_clear( libvlc_exception_t * );
  * @warning
  * 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.
  * By default, the error status is automatically overriden when a new error
  * 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.