gui: macos: use float for rate
[vlc.git] / src / playlist / control.h
blob6a707cf6f062e751c18eb4ab97f5533525deb0a4
1 /*****************************************************************************
2 * playlist/control.h
3 *****************************************************************************
4 * Copyright (C) 2018 VLC authors and VideoLAN
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifndef VLC_PLAYLIST_CONTROL_H
22 #define VLC_PLAYLIST_CONTROL_H
24 #include <vlc_common.h>
26 typedef struct vlc_playlist vlc_playlist_t;
28 bool
29 vlc_playlist_ComputeHasPrev(vlc_playlist_t *playlist);
31 bool
32 vlc_playlist_ComputeHasNext(vlc_playlist_t *playlist);
34 int
35 vlc_playlist_SetCurrentMedia(vlc_playlist_t *playlist, ssize_t index);
37 input_item_t *
38 vlc_playlist_GetNextMedia(vlc_playlist_t *playlist);
40 #endif