Skip to content
Snippets Groups Projects
Commit 0f857561 authored by littlejohn's avatar littlejohn
Browse files

libvlc_playlist_add enabled

parent e1b9b4da
No related branches found
No related tags found
No related merge requests found
......@@ -112,13 +112,9 @@ int libvlc_playlist_add_extended( libvlc_instance_t *p_instance,
libvlc_exception_t *p_e )
{
assert( PL );
#ifndef FIXME
return VLC_EGENERIC;
#else
return playlist_PlaylistAddExt( PL, psz_uri, psz_name,
return playlist_AddExt( PL, psz_uri, psz_name,
PLAYLIST_INSERT, PLAYLIST_END, -1, ppsz_options,
i_options );
#endif
i_options, 1 );
}
int libvlc_playlist_delete_item( libvlc_instance_t *p_instance, int i_id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment