summaryrefslogtreecommitdiff
path: root/firmware/common/unicode.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-08-01 16:15:27 +0000
committerThomas Martitz <kugel@rockbox.org>2010-08-01 16:15:27 +0000
commit9c0b2479f7025a84444adf08e3be8ced60dad013 (patch)
treef3d328dd73f46d599f0432cc43ae206798cbe4f6 /firmware/common/unicode.c
parent2e7d92fef707a2cd30820fd0053c539c3ac8e2b3 (diff)
downloadrockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.tar.gz
rockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.zip
Rockbox as an application: add get_user_file_path().
For RaaA it evaluates user paths at runtime. For everything but codecs/plugins it will give the path under $HOME/.config/rockbox.org if write access is needed or if the file/folder in question exists there (otherwise it gives /usr/local/share/rockbox). This allows for installing themes under $HOME as well as having config.cfg and other important files there while installing the application (and default themes) under /usr/local. On the DAPs it's a no-op, returing /.rockbox directly. Not converted to use get_user_file_path() are plugins themselves, because RaaA doesn't build plugins yet. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27656 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common/unicode.c')
-rw-r--r--firmware/common/unicode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/unicode.c b/firmware/common/unicode.c
index 4ef6eaae2b..25d4a9129e 100644
--- a/firmware/common/unicode.c
+++ b/firmware/common/unicode.c
@@ -27,16 +27,16 @@
27 */ 27 */
28 28
29#include <stdio.h> 29#include <stdio.h>
30#include "config.h"
30#include "file.h" 31#include "file.h"
31#include "debug.h" 32#include "debug.h"
32#include "rbunicode.h" 33#include "rbunicode.h"
33#include "config.h" 34#include "rbpaths.h"
34 35
35#ifndef O_BINARY 36#ifndef O_BINARY
36#define O_BINARY 0 37#define O_BINARY 0
37#endif 38#endif
38 39
39#define CODEPAGE_DIR ROCKBOX_DIR"/codepages"
40static int default_codepage = 0; 40static int default_codepage = 0;
41static int loaded_cp_table = 0; 41static int loaded_cp_table = 0;
42 42