Commit d782b421 authored by Olivier Aubert's avatar Olivier Aubert

Add missing parameter documentation.

parent 0b1d6819
...@@ -401,6 +401,7 @@ typedef void (*libvlc_log_cb)(void *data, int level, const libvlc_log_t *ctx, ...@@ -401,6 +401,7 @@ typedef void (*libvlc_log_cb)(void *data, int level, const libvlc_log_t *ctx,
* This function will wait for any pending callbacks invocation to complete * This function will wait for any pending callbacks invocation to complete
* (causing a deadlock if called from within the callback). * (causing a deadlock if called from within the callback).
* *
* \param p_instance libvlc instance
* \version LibVLC 2.1.0 or later * \version LibVLC 2.1.0 or later
*/ */
LIBVLC_API void libvlc_log_unset( libvlc_instance_t * ); LIBVLC_API void libvlc_log_unset( libvlc_instance_t * );
...@@ -418,6 +419,7 @@ LIBVLC_API void libvlc_log_unset( libvlc_instance_t * ); ...@@ -418,6 +419,7 @@ LIBVLC_API void libvlc_log_unset( libvlc_instance_t * );
* *
* \warning A deadlock may occur if this function is called from the callback. * \warning A deadlock may occur if this function is called from the callback.
* *
* \param p_instance libvlc instance
* \version LibVLC 2.1.0 or later * \version LibVLC 2.1.0 or later
*/ */
LIBVLC_API void libvlc_log_set( libvlc_instance_t *, LIBVLC_API void libvlc_log_set( libvlc_instance_t *,
...@@ -426,6 +428,7 @@ LIBVLC_API void libvlc_log_set( libvlc_instance_t *, ...@@ -426,6 +428,7 @@ LIBVLC_API void libvlc_log_set( libvlc_instance_t *,
/** /**
* Sets up logging to a file. * Sets up logging to a file.
* \param p_instance libvlc instance
* \param stream FILE pointer opened for writing * \param stream FILE pointer opened for writing
* (the FILE pointer must remain valid until libvlc_log_unset()) * (the FILE pointer must remain valid until libvlc_log_unset())
* \version LibVLC 2.1.0 or later * \version LibVLC 2.1.0 or later
......
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