X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcontrol%2Fplaylist.c;h=79f274cda5757fe50a677005e1ac9d836776f2d6;hb=b93670e1dce5ba4bebc66db8d78864d865672b68;hp=fe882bcc4cf45f6eb8aeae444319150bc1ac22e9;hpb=8f1c0142c806d1f553168c366ef05b70d132d3a2;p=vlc diff --git a/src/control/playlist.c b/src/control/playlist.c index fe882bcc4c..79f274cda5 100644 --- a/src/control/playlist.c +++ b/src/control/playlist.c @@ -21,6 +21,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "libvlc_internal.h" #include "libvlc.h" @@ -35,12 +39,10 @@ #include void libvlc_playlist_play( libvlc_instance_t *p_instance, int i_id, - int i_options, char **ppsz_options, - libvlc_exception_t *p_e ) + int i_options, char **ppsz_options ) { playlist_t *pl = libvlc_priv (p_instance->p_libvlc_int)->p_playlist; VLC_UNUSED(i_id); VLC_UNUSED(i_options); VLC_UNUSED(ppsz_options); - VLC_UNUSED(p_e); assert( pl ); if( pl->items.i_size == 0 )