70 lines
2.4 KiB
C
70 lines
2.4 KiB
C
|
/*****************************************************************************
|
||
|
* deprecated.h: libvlc deprecated API
|
||
|
*****************************************************************************
|
||
|
* Copyright (C) 1998-2008 VLC authors and VideoLAN
|
||
|
* $Id: 7f55090fcd482489ceed9145ce2253e78fa6fd2a $
|
||
|
*
|
||
|
* Authors: Clément Stenac <zorglub@videolan.org>
|
||
|
* Jean-Paul Saman <jpsaman@videolan.org>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms of the GNU Lesser General Public License as published by
|
||
|
* the Free Software Foundation; either version 2.1 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with this program; if not, write to the Free Software Foundation,
|
||
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef LIBVLC_DEPRECATED_H
|
||
|
#define LIBVLC_DEPRECATED_H 1
|
||
|
|
||
|
/**
|
||
|
* \file
|
||
|
* This file defines libvlc deprecated API
|
||
|
*/
|
||
|
|
||
|
# ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
# endif
|
||
|
|
||
|
/*****************************************************************************
|
||
|
* Playlist (Deprecated)
|
||
|
*****************************************************************************/
|
||
|
/** \defgroup libvlc_playlist LibVLC playlist (legacy)
|
||
|
* \ingroup libvlc
|
||
|
* @deprecated Use @ref libvlc_media_list instead.
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Start playing (if there is any item in the playlist).
|
||
|
*
|
||
|
* Additionnal playlist item options can be specified for addition to the
|
||
|
* item before it is played.
|
||
|
*
|
||
|
* \param p_instance the playlist instance
|
||
|
* \param i_id the item to play. If this is a negative number, the next
|
||
|
* item will be selected. Otherwise, the item with the given ID will be
|
||
|
* played
|
||
|
* \param i_options the number of options to add to the item
|
||
|
* \param ppsz_options the options to add to the item
|
||
|
*/
|
||
|
LIBVLC_DEPRECATED LIBVLC_API
|
||
|
void libvlc_playlist_play( libvlc_instance_t *p_instance, int i_id,
|
||
|
int i_options, char **ppsz_options );
|
||
|
|
||
|
/** @}*/
|
||
|
|
||
|
# ifdef __cplusplus
|
||
|
}
|
||
|
# endif
|
||
|
|
||
|
#endif /* _LIBVLC_DEPRECATED_H */
|