]> git.sesse.net Git - vlc/blobdiff - include/vlc/libvlc.h
libvlc: add two functions
[vlc] / include / vlc / libvlc.h
index 2e8b334df0bdc831926156dbf6b3a76e650e9fee..a5027dad50362a56b146ae69bde15a7e4c1a6a9b 100644 (file)
@@ -88,15 +88,12 @@ VLC_PUBLIC_API int
 libvlc_exception_raised( const libvlc_exception_t *p_exception );
 
 /**
- * Raise an exception using a user-provided message.
+ * Raise an exception.
  *
  * \param p_exception the exception to raise
- * \param psz_format the exception message format string
- * \param ... the format string arguments
  */
 VLC_PUBLIC_API void
-libvlc_exception_raise( libvlc_exception_t *p_exception,
-                        const char *psz_format, ... );
+libvlc_exception_raise( libvlc_exception_t *p_exception );
 
 /**
  * Clear an exception object so it can be reused.
@@ -257,6 +254,8 @@ VLC_PUBLIC_API struct vlc_object_t *libvlc_get_vlc_instance(libvlc_instance_t *p
  * Frees an heap allocation (char *) returned by a LibVLC API.
  * If you know you're using the same underlying C run-time as the LibVLC
  * implementation, then you can call ANSI C free() directly instead.
+ *
+ * \param ptr the pointer
  */
 VLC_PUBLIC_API void libvlc_free( void *ptr );
 
@@ -375,7 +374,6 @@ VLC_PUBLIC_API void libvlc_log_close( libvlc_log_t *p_log );
  * Returns the number of messages in a log instance.
  *
  * \param p_log libvlc log instance or NULL
- * \param p_e an initialized exception pointer
  * \return number of log messages, 0 if p_log is NULL
  */
 VLC_PUBLIC_API unsigned libvlc_log_count( const libvlc_log_t *p_log );