Commit bd733d23 authored by Olivier Aubert's avatar Olivier Aubert

libvlc.h: improve docstrings

parent 47081ad9
...@@ -101,6 +101,8 @@ LIBVLC_API void libvlc_clearerr (void); ...@@ -101,6 +101,8 @@ LIBVLC_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.
* Any previous error is overridden. * Any previous error is overridden.
* \param fmt the format string
* \param ap the arguments
* \return a nul terminated string in any case * \return a nul terminated string in any case
*/ */
LIBVLC_API const char *libvlc_vprinterr (const char *fmt, va_list ap); LIBVLC_API const char *libvlc_vprinterr (const char *fmt, va_list ap);
...@@ -108,6 +110,8 @@ LIBVLC_API const char *libvlc_vprinterr (const char *fmt, va_list ap); ...@@ -108,6 +110,8 @@ LIBVLC_API const char *libvlc_vprinterr (const char *fmt, va_list ap);
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
* Any previous error is overridden. * Any previous error is overridden.
* \param fmt the format string
* \param args the arguments
* \return a nul terminated string in any case * \return a nul terminated string in any case
*/ */
LIBVLC_API 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