diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-12-12 22:22:21 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-12-12 22:22:21 +0000 |
commit | 314f3b58f18ccbc8f5a39897681bc8579cd330d1 (patch) | |
tree | b56b1ca14e372738b171d81c8f0ae4ac9429cc13 /apps/abrepeat.h | |
parent | 819712f118a3e036da7042199c6d7197416ddbee (diff) |
More static'ing, and a few fixes resulting from that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11737 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/abrepeat.h')
-rw-r--r-- | apps/abrepeat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/abrepeat.h b/apps/abrepeat.h index 143e57b371..d7bed0a990 100644 --- a/apps/abrepeat.h +++ b/apps/abrepeat.h @@ -32,9 +32,11 @@ #include "settings.h" #endif -void ab_repeat_init(void); +void ab_repeat_init(void); +#if 0 /* Currently unused */ unsigned int ab_get_A_marker(void); unsigned int ab_get_B_marker(void); +#endif /* if 0 */ bool ab_before_A_marker(unsigned int song_position); bool ab_after_A_marker(unsigned int song_position); void ab_jump_to_A_marker(void); |