summaryrefslogtreecommitdiff
path: root/apps/playback.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
commit224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9 (patch)
treebae2154b272f786983cf8e6de28d33f98f327560 /apps/playback.h
parentc0f8b187706364f5e4bda2ac26750d14454c901d (diff)
downloadrockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.gz
rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.zip
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10582 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.h')
-rw-r--r--apps/playback.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/playback.h b/apps/playback.h
index 7144974f36..3e501333c1 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -67,9 +67,13 @@ void audio_set_track_unbuffer_event(void (*handler)(struct mp3entry *id3,
67void audio_invalidate_tracks(void); 67void audio_invalidate_tracks(void);
68void voice_init(void); 68void voice_init(void);
69 69
70#if CONFIG_CODEC == SWCODEC /* This #ifdef is better here than gui/gwps.c */
70extern void audio_next_dir(void); 71extern void audio_next_dir(void);
71extern void audio_prev_dir(void); 72extern void audio_prev_dir(void);
72 73#else
74#define audio_next_dir()
75#define audio_prev_dir()
76#endif
73void audio_preinit(void); 77void audio_preinit(void);
74 78
75#endif 79#endif