summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/screens.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/screens.h b/apps/screens.h
index 1cfd7dcdcf..c3925f8ebc 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -24,7 +24,9 @@
24#include "config.h" 24#include "config.h"
25#include "timefuncs.h" 25#include "timefuncs.h"
26#include "metadata.h" 26#include "metadata.h"
27#ifndef WARBLE
27#include "playlist.h" 28#include "playlist.h"
29#endif
28 30
29struct screen; 31struct screen;
30 32
@@ -40,11 +42,13 @@ int mmc_remove_request(void);
40bool set_time_screen(const char* title, struct tm *tm, bool set_date); 42bool set_time_screen(const char* title, struct tm *tm, bool set_date);
41#endif 43#endif
42 44
43bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount, 45#ifndef WARBLE
44 struct tm *modified, int track_ct);
45bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist, 46bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist,
46 int playlist_display_index, int playlist_amount, 47 int playlist_display_index, int playlist_amount,
47 struct tm *modified, int track_ct); 48 struct tm *modified, int track_ct);
49#endif
50bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount,
51 struct tm *modified, int track_ct);
48int view_runtime(void); 52int view_runtime(void);
49 53
50#ifdef HAVE_TOUCHSCREEN 54#ifdef HAVE_TOUCHSCREEN