21 lines
287 B
C
21 lines
287 B
C
#ifndef PLAYLIST_H
|
|
#define PLAYLIST_H
|
|
|
|
#include "Entry.h"
|
|
|
|
void playlistClear();
|
|
|
|
void playlistAdd(String entry);
|
|
|
|
void playlistLoad(const String &path);
|
|
|
|
Entry playlistCurrent();
|
|
|
|
Entry playlistNext(int amount);
|
|
|
|
Entry playlistNextOrRepeatOneIfEnabled();
|
|
|
|
Entry playlistBack();
|
|
|
|
#endif
|