forked from len0rd/rockbox
plugins: make local functions static for a subset of plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30564 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e03faf835d
commit
d91e67acc9
14 changed files with 124 additions and 122 deletions
|
@ -115,12 +115,12 @@ static bool cancel;
|
|||
#endif
|
||||
|
||||
/* we don't have yet a filetype attribute for image files */
|
||||
const char *image_exts[] = {"bmp","jpg","jpe","jpeg","png","ppm"};
|
||||
static const char *image_exts[] = {"bmp","jpg","jpe","jpeg","png","ppm"};
|
||||
|
||||
/* neither for video ones */
|
||||
const char *video_exts[] = {"mpg","mpeg","mpv","m2v"};
|
||||
static const char *video_exts[] = {"mpg","mpeg","mpv","m2v"};
|
||||
|
||||
void prn(const char *str, int y)
|
||||
static void prn(const char *str, int y)
|
||||
{
|
||||
rb->lcd_puts(0,y,str);
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
|
@ -128,7 +128,7 @@ void prn(const char *str, int y)
|
|||
#endif
|
||||
}
|
||||
|
||||
void update_screen(void)
|
||||
static void update_screen(void)
|
||||
{
|
||||
char buf[32];
|
||||
|
||||
|
@ -165,7 +165,7 @@ void update_screen(void)
|
|||
#endif
|
||||
}
|
||||
|
||||
void traversedir(char* location, char* name)
|
||||
static void traversedir(char* location, char* name)
|
||||
{
|
||||
int button;
|
||||
struct dirent *entry;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue