mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
plugins: another round of making local functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2176fb38b6
commit
fe67a87885
17 changed files with 171 additions and 168 deletions
|
@ -359,7 +359,7 @@ static const fb_data * puzzle_bmp_ptr;
|
|||
static const char * initial_bmp_path=NULL;
|
||||
|
||||
#ifdef HAVE_ALBUMART
|
||||
const char * get_albumart_bmp_path(void)
|
||||
static const char * get_albumart_bmp_path(void)
|
||||
{
|
||||
struct mp3entry* track = rb->audio_current_track();
|
||||
|
||||
|
@ -374,10 +374,12 @@ const char * get_albumart_bmp_path(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
const char * get_random_bmp_path(void)
|
||||
#if 0 /* unused */
|
||||
static const char * get_random_bmp_path(void)
|
||||
{
|
||||
return(initial_bmp_path);
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool load_resize_bitmap(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue