diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-17 10:36:42 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-17 10:36:42 +0000 |
| commit | fc2bb6cd2086045d8261b0bf95703510a3aa1bc6 (patch) | |
| tree | 9311df0d3118b4985aa6473770a4cd873b5d5fe6 /apps/playlist.h | |
| parent | dbf59f490e716a7cc92cbb999572c08236e4908d (diff) | |
| download | rockbox-fc2bb6cd2086045d8261b0bf95703510a3aa1bc6.zip rockbox-fc2bb6cd2086045d8261b0bf95703510a3aa1bc6.tar.gz rockbox-fc2bb6cd2086045d8261b0bf95703510a3aa1bc6.tar.bz2 rockbox-fc2bb6cd2086045d8261b0bf95703510a3aa1bc6.tar.xz | |
Made playlist shuffle an option instead of an action
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1031 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist.h')
| -rw-r--r-- | apps/playlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/playlist.h b/apps/playlist.h index 300c7aa..2517d2b 100644 --- a/apps/playlist.h +++ b/apps/playlist.h @@ -20,6 +20,8 @@ #ifndef __PLAYLIST_H__ #define __PLAYLIST_H__ +#include <stdbool.h> + /* playlist data */ #define MAX_PLAYLIST_SIZE 10000 @@ -33,6 +35,7 @@ typedef struct } playlist_info_t; extern playlist_info_t playlist; +extern bool playlist_shuffle; void play_list(char *dir, char *file); char* playlist_next(int type); |