diff options
author | Nils Wallménius <nils@rockbox.org> | 2011-12-05 19:23:46 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2011-12-05 19:23:46 +0000 |
commit | a0377bd500bc3185f840a67b4ee82ddaf7eaa5ab (patch) | |
tree | 857a878b0e8c34b87a339cc24f9ed99185a79447 /apps/filetypes.h | |
parent | 906905aa43566c16913238a71ccc13d438af1702 (diff) | |
download | rockbox-a0377bd500bc3185f840a67b4ee82ddaf7eaa5ab.tar.gz rockbox-a0377bd500bc3185f840a67b4ee82ddaf7eaa5ab.tar.bz2 rockbox-a0377bd500bc3185f840a67b4ee82ddaf7eaa5ab.zip |
Sprinkle around some static and const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31153 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.h')
-rw-r--r-- | apps/filetypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/filetypes.h b/apps/filetypes.h index bde0a3f15f..dd8993e262 100644 --- a/apps/filetypes.h +++ b/apps/filetypes.h @@ -58,7 +58,7 @@ void tree_get_filetypes(const struct filetype**, int*); /* init the filetypes structs. uses audio buffer for storage, so call early in init... */ -void filetype_init(void) INIT_ATTR; +void filetype_init(void) INIT_ATTR; void read_viewer_theme_file(void); #ifdef HAVE_LCD_COLOR void read_color_theme_file(void); @@ -80,7 +80,7 @@ bool filetype_supported(int attr); int filetype_list_viewers(const char* current_file); /* start a plugin with file as the argument (called from onplay.c) */ -int filetype_load_plugin(const char* plugin, char* file); +int filetype_load_plugin(const char* plugin, const char* file); #endif |