summaryrefslogtreecommitdiff
path: root/apps/filetypes.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-12-05 19:23:46 +0000
committerNils Wallménius <nils@rockbox.org>2011-12-05 19:23:46 +0000
commita0377bd500bc3185f840a67b4ee82ddaf7eaa5ab (patch)
tree857a878b0e8c34b87a339cc24f9ed99185a79447 /apps/filetypes.h
parent906905aa43566c16913238a71ccc13d438af1702 (diff)
downloadrockbox-a0377bd500bc3185f840a67b4ee82ddaf7eaa5ab.tar.gz
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.h4
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*);
58 58
59/* init the filetypes structs. 59/* init the filetypes structs.
60 uses audio buffer for storage, so call early in init... */ 60 uses audio buffer for storage, so call early in init... */
61void filetype_init(void) INIT_ATTR; 61void filetype_init(void) INIT_ATTR;
62void read_viewer_theme_file(void); 62void read_viewer_theme_file(void);
63#ifdef HAVE_LCD_COLOR 63#ifdef HAVE_LCD_COLOR
64void read_color_theme_file(void); 64void read_color_theme_file(void);
@@ -80,7 +80,7 @@ bool filetype_supported(int attr);
80int filetype_list_viewers(const char* current_file); 80int filetype_list_viewers(const char* current_file);
81 81
82/* start a plugin with file as the argument (called from onplay.c) */ 82/* start a plugin with file as the argument (called from onplay.c) */
83int filetype_load_plugin(const char* plugin, char* file); 83int filetype_load_plugin(const char* plugin, const char* file);
84 84
85 85
86#endif 86#endif