[vlc-devel] commit: libvlc.h: mark libvlc_errmsg and libvlc_clearerr with VLC_PUBLIC_API ( Olivier Aubert )
git version control
git at videolan.org
Thu Sep 3 10:54:03 CEST 2009
vlc | branch: master | Olivier Aubert <olivier.aubert at liris.cnrs.fr> | Thu Sep 3 10:49:07 2009 +0200| [61c4e1d4f0556ff585aaa3788c64f11767d9d778] | committer: Olivier Aubert
libvlc.h: mark libvlc_errmsg and libvlc_clearerr with VLC_PUBLIC_API
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=61c4e1d4f0556ff585aaa3788c64f11767d9d778
---
include/vlc/libvlc.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc/libvlc.h b/include/vlc/libvlc.h
index 1171dc8..2e8b334 100644
--- a/include/vlc/libvlc.h
+++ b/include/vlc/libvlc.h
@@ -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.
More information about the vlc-devel
mailing list