From: Olivier Aubert Date: Thu, 21 Dec 2006 09:58:22 +0000 (+0000) Subject: include/vlc/libvlc.h: comment fixes X-Git-Tag: 0.9.0-test0~8952 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a77fdc28e0573179dd369475bb1cb58ce403b641;p=vlc include/vlc/libvlc.h: comment fixes --- diff --git a/include/vlc/libvlc.h b/include/vlc/libvlc.h index 8e4c51eb21..5b1e8649a4 100644 --- a/include/vlc/libvlc.h +++ b/include/vlc/libvlc.h @@ -371,7 +371,7 @@ int libvlc_video_destroy( libvlc_input_t *, libvlc_exception_t *); * \param width new width for video output window * \param height new height for video output window * \param p_exception an initialized exception - * \return the mute status (boolean) + * \return the success status (boolean) */ void libvlc_video_resize( libvlc_input_t *, int, int, libvlc_exception_t *); @@ -387,7 +387,7 @@ void libvlc_video_resize( libvlc_input_t *, int, int, libvlc_exception_t *); * \param p_instance libvlc instance * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32) * \param p_exception an initialized exception - * \return the mute status (boolean) + * \return the success status (boolean) */ int libvlc_video_reparent( libvlc_input_t *, libvlc_drawable_t, libvlc_exception_t * ); @@ -487,7 +487,6 @@ int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * ); * \param p_instance libvlc instance * \param i_volume the volume (int) * \param p_exception an initialized exception - * \return void */ void libvlc_audio_set_volume( libvlc_instance_t *, int, libvlc_exception_t *); @@ -504,7 +503,6 @@ int libvlc_audio_get_track( libvlc_input_t *, libvlc_exception_t * ); * \param p_input input instance * \param i_track the track (int) * \param p_exception an initialized exception - * \return void */ void libvlc_audio_set_track( libvlc_input_t *, int, libvlc_exception_t * ); @@ -521,7 +519,6 @@ char *libvlc_audio_get_channel( libvlc_instance_t *, libvlc_exception_t * ); * \param p_instance input instance * \param psz_channel the audio channel (char *) * \param p_exception an initialized exception - * \return void */ void libvlc_audio_set_channel( libvlc_instance_t *, char *, libvlc_exception_t * );