]> git.sesse.net Git - vlc/commitdiff
Add missing parameter documentation.
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Mon, 1 Apr 2013 21:39:18 +0000 (23:39 +0200)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Mon, 1 Apr 2013 21:39:18 +0000 (23:39 +0200)
include/vlc/libvlc.h

index 560b787df6731fe0dbb45319ec395dfc88c1ec11..f784904f938b1b07acb6b1e6fee13817f1335a29 100644 (file)
@@ -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
  * (causing a deadlock if called from within the callback).
  *
+ * \param p_instance libvlc instance
  * \version LibVLC 2.1.0 or later
  */
 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.
  *
+ * \param p_instance libvlc instance
  * \version LibVLC 2.1.0 or later
  */
 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.
+ * \param p_instance libvlc instance
  * \param stream FILE pointer opened for writing
  *         (the FILE pointer must remain valid until libvlc_log_unset())
  * \version LibVLC 2.1.0 or later