diff options
author | Thomas Martitz <kugel@rockbox.org> | 2013-12-13 10:24:15 +0100 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2014-03-10 22:55:26 +0100 |
commit | 50f0dd80d660b332a1739e07a630c2cef1b678c6 (patch) | |
tree | d06ff8c644092167028e0582911ab3550b29ca66 /apps/abrepeat.h | |
parent | 4262e648eb3adbd502ea57319d3fd27103a4f267 (diff) |
ab_repeat: Move GUI bits to the skin engine. This allows ab_repeat to be compiled headless.
Change-Id: I4fa3b8ef7139313891ca70df11f7f17c5df38cb7
Diffstat (limited to 'apps/abrepeat.h')
-rw-r--r-- | apps/abrepeat.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/abrepeat.h b/apps/abrepeat.h index 49557a34b7..ec0a07c827 100644 --- a/apps/abrepeat.h +++ b/apps/abrepeat.h @@ -37,14 +37,13 @@ void ab_jump_to_A_marker(void); void ab_reset_markers(void); void ab_set_A_marker(unsigned int song_position); void ab_set_B_marker(unsigned int song_position); +/* These return whether the marker are actually set. + * The actual positions are returned via output parameter */ +bool ab_get_A_marker(unsigned int *song_position); +bool ab_get_B_marker(unsigned int *song_position); #if (CONFIG_CODEC == SWCODEC) void ab_end_of_track_report(void); #endif -#ifdef HAVE_LCD_BITMAP -#include "screen_access.h" -void ab_draw_markers(struct screen * screen, int capacity, - int x, int y, int w, int h); -#endif /* These functions really need to be inlined for speed */ extern unsigned int ab_A_marker; |