X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc%2Flibvlc.h;h=f364dab3323ec1a05cdd929077543eb76a7cd809;hb=09020b63ba7513eeaff38f1cc40e2b4937c61030;hp=38f4dc2e8d30d63e688ee93d5edac8e9c8d187f0;hpb=b554afa92d9bfa07c957a25ff065219bf2de1bcf;p=vlc diff --git a/include/vlc/libvlc.h b/include/vlc/libvlc.h index 38f4dc2e8d..f364dab332 100644 --- a/include/vlc/libvlc.h +++ b/include/vlc/libvlc.h @@ -162,13 +162,11 @@ const char *libvlc_printerr (const char *fmt, ...); * Create and initialize a libvlc instance. * * \param argc the number of arguments - * \param argv command-line-type arguments. argv[0] must be the path of the - * calling program. - * \param p_e an initialized exception pointer - * \return the libvlc instance + * \param argv command-line-type arguments + * \return the libvlc instance or NULL in case of error */ VLC_PUBLIC_API libvlc_instance_t * -libvlc_new( int , const char *const *, libvlc_exception_t *); +libvlc_new( int , const char *const * ); /** * Decrement the reference count of a libvlc instance, and destroy it @@ -339,10 +337,9 @@ VLC_PUBLIC_API void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, uns * Open a VLC message log instance. * * \param p_instance libvlc instance - * \param p_e an initialized exception pointer - * \return log message instance + * \return log message instance or NULL on error */ -VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( libvlc_instance_t *, libvlc_exception_t *); +VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( libvlc_instance_t *); /** * Close a VLC message log instance. @@ -373,10 +370,9 @@ VLC_PUBLIC_API void libvlc_log_clear( libvlc_log_t *p_log ); * Allocate and returns a new iterator to messages in log. * * \param p_log libvlc log instance - * \param p_e an initialized exception pointer - * \return log iterator object + * \return log iterator object or NULL on error */ -VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *, libvlc_exception_t *); +VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t * ); /** * Release a previoulsy allocated iterator. @@ -400,12 +396,10 @@ VLC_PUBLIC_API int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_ * * \param p_iter libvlc log iterator or NULL * \param p_buffer log buffer - * \param p_e an initialized exception pointer - * \return log message object + * \return log message object or NULL if none left */ VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter, - libvlc_log_message_t *p_buffer, - libvlc_exception_t *p_e ); + libvlc_log_message_t *p_buffer ); /** @} */