summaryrefslogtreecommitdiff
path: root/apps/filetypes.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-16 09:14:36 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-16 09:14:36 +0000
commit6a5cc0bd25bd468c79e453fa49f353edd824141a (patch)
tree8b406e8390550ff8b87eae3214309867574657f0 /apps/filetypes.h
parent7afe2e86931313653d4dedb6d5167c79c2822aba (diff)
downloadrockbox-6a5cc0bd25bd468c79e453fa49f353edd824141a.tar.gz
rockbox-6a5cc0bd25bd468c79e453fa49f353edd824141a.zip
Customizable icons for all bitmap targets. (FS#7013)
http://www.rockbox.org/twiki/bin/view/Main/CustomIcons for info on format and how to load them git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13177 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.h')
-rw-r--r--apps/filetypes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/filetypes.h b/apps/filetypes.h
index d2556c1d95..182cb0da4e 100644
--- a/apps/filetypes.h
+++ b/apps/filetypes.h
@@ -25,10 +25,11 @@
25/* init the filetypes structs. 25/* init the filetypes structs.
26 uses audio buffer for storage, so call early in init... */ 26 uses audio buffer for storage, so call early in init... */
27void filetype_init(void); 27void filetype_init(void);
28void read_viewer_theme_file(void);
28 29
29/* Return the attribute (TREE_ATTR_*) of the file */ 30/* Return the attribute (TREE_ATTR_*) of the file */
30int filetype_get_attr(const char* file); 31int filetype_get_attr(const char* file);
31ICON filetype_get_icon(int attr); 32int filetype_get_icon(int attr);
32/* return the plugin filename associated with the file */ 33/* return the plugin filename associated with the file */
33char* filetype_get_plugin(const struct entry* file); 34char* filetype_get_plugin(const struct entry* file);
34 35