Commit 71992c5f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Deprecate vlc_object_kill(). There are several safer alternatives.

parent 6f258887
......@@ -92,7 +92,7 @@ VLC_API char *vlc_object_get_name( const vlc_object_t * ) LIBVLC_USED;
vlc_list_children( VLC_OBJECT(a) )
/* Objects and threading */
VLC_API void vlc_object_kill( vlc_object_t * );
VLC_API void vlc_object_kill( vlc_object_t * ) LIBVLC_DEPRECATED;
#define vlc_object_kill(a) \
vlc_object_kill( VLC_OBJECT(a) )
......
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