diff options
author | Björn Stenberg <bjorn@haxx.se> | 2004-05-21 20:08:24 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2004-05-21 20:08:24 +0000 |
commit | fb00c2190bab443812581473032156eb1e804c30 (patch) | |
tree | 7ac8b3964e7ebf284b1eae3a384a036e928f568d /apps/player/icons.h | |
parent | 087a085790b2f9099e9b7c9184374a30520f408e (diff) |
Plugin/file type association system. Patch #879411 by Henrik Backe
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4677 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/player/icons.h')
-rw-r--r-- | apps/player/icons.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/player/icons.h b/apps/player/icons.h index c96f821cfa..041f09eca6 100644 --- a/apps/player/icons.h +++ b/apps/player/icons.h @@ -16,6 +16,9 @@ * KIND, either express or implied. * ****************************************************************************/ +#ifndef _ICONS_H_ +#define _ICONS_H_ + #include <lcd.h> /* @@ -25,9 +28,11 @@ #ifdef HAVE_LCD_CHARCELLS enum { - Unknown=0x90, + Unknown = 0x90, Plugin = 0x17, Folder, Mod_Ajz, Language, File, Wps, Playlist, Text, Config, }; #endif + +#endif /* _ICONS_H_ */ |