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

Do not use non-existing function playlist_PlaylistAddExt.

Hopefully fix linking on Windows and Mac OS X.
parent 2f095050
...@@ -112,9 +112,13 @@ int libvlc_playlist_add_extended( libvlc_instance_t *p_instance, ...@@ -112,9 +112,13 @@ int libvlc_playlist_add_extended( libvlc_instance_t *p_instance,
libvlc_exception_t *p_e ) libvlc_exception_t *p_e )
{ {
assert( PL ); assert( PL );
#ifndef FIXME
return VLC_EGENERIC;
#else
return playlist_PlaylistAddExt( PL, psz_uri, psz_name, return playlist_PlaylistAddExt( PL, psz_uri, psz_name,
PLAYLIST_INSERT, PLAYLIST_END, -1, ppsz_options, PLAYLIST_INSERT, PLAYLIST_END, -1, ppsz_options,
i_options ); i_options );
#endif
} }
int libvlc_playlist_delete_item( libvlc_instance_t *p_instance, int i_id, int libvlc_playlist_delete_item( libvlc_instance_t *p_instance, int i_id,
......
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