summaryrefslogtreecommitdiff
path: root/apps/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.h')
-rw-r--r--apps/playlist.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/playlist.h b/apps/playlist.h
index 300c7aab65..2517d2b877 100644
--- a/apps/playlist.h
+++ b/apps/playlist.h
@@ -20,6 +20,8 @@
20#ifndef __PLAYLIST_H__ 20#ifndef __PLAYLIST_H__
21#define __PLAYLIST_H__ 21#define __PLAYLIST_H__
22 22
23#include <stdbool.h>
24
23/* playlist data */ 25/* playlist data */
24 26
25#define MAX_PLAYLIST_SIZE 10000 27#define MAX_PLAYLIST_SIZE 10000
@@ -33,6 +35,7 @@ typedef struct
33} playlist_info_t; 35} playlist_info_t;
34 36
35extern playlist_info_t playlist; 37extern playlist_info_t playlist;
38extern bool playlist_shuffle;
36 39
37void play_list(char *dir, char *file); 40void play_list(char *dir, char *file);
38char* playlist_next(int type); 41char* playlist_next(int type);