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:
Bertrik Sikken 2011-10-15 20:38:08 +00:00
parent 2176fb38b6
commit fe67a87885
17 changed files with 171 additions and 168 deletions

View file

@ -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)
{