summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_viewer.h')
-rw-r--r--apps/playlist_viewer.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/playlist_viewer.h b/apps/playlist_viewer.h
index 8526d032e7..97f5b0baef 100644
--- a/apps/playlist_viewer.h
+++ b/apps/playlist_viewer.h
@@ -23,8 +23,14 @@
23#ifndef _PLAYLIST_VIEWER_H_ 23#ifndef _PLAYLIST_VIEWER_H_
24#define _PLAYLIST_VIEWER_H_ 24#define _PLAYLIST_VIEWER_H_
25 25
26bool playlist_viewer(void); 26enum playlist_viewer_result playlist_viewer(void);
27bool playlist_viewer_ex(const char* filename); 27enum playlist_viewer_result playlist_viewer_ex(const char* filename);
28bool search_playlist(void); 28bool search_playlist(void);
29 29
30enum playlist_viewer_result {
31 PLAYLIST_VIEWER_OK,
32 PLAYLIST_VIEWER_USB,
33 PLAYLIST_VIEWER_MAINMENU,
34};
35
30#endif 36#endif