This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#5757 - Correctly display short DOS file names in file browser
Attached to Project:
Rockbox
Opened by Alexander Levin (fml2) - Tuesday, 01 August 2006, 23:24 GMT+2
Opened by Alexander Levin (fml2) - Tuesday, 01 August 2006, 23:24 GMT+2
|
DetailsThis is a sequel for
Following code pages are supported: cp850 (western Europe), cp852 (central Europe), cp737 (greek), cp866 (cyriliic), cp862 (hebrew). If you change the default code page (in the settings menu) and there are files that are displayed with the short DOS names, you'd better rebuild the dir cache (if it's activated) since the UTF8-name of the file changes. When I compile the modified sources, I get the following warning which I don't understand: CC common/unicode.c common/unicode.c:136: warning: function declaration isn't a prototype Could anyone tell me what that means and what the reason is? |
This task depends upon
static bool load_oem_table()
lacks an argument. In ANSI C you need to write it like this:
static bool load_oem_table(void)