summaryrefslogtreecommitdiff
path: root/firmware/include/file.h
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/include/file.h
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/include/file.h')
-rw-r--r--firmware/include/file.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/include/file.h b/firmware/include/file.h
index 91b701d6d2..a9d1d05a11 100644
--- a/firmware/include/file.h
+++ b/firmware/include/file.h
@@ -22,13 +22,12 @@
22#ifndef _FILE_H_ 22#ifndef _FILE_H_
23#define _FILE_H_ 23#define _FILE_H_
24 24
25#undef MAX_PATH /* this avoids problems when building simulator */
26#define MAX_PATH 260
27
28#include <sys/types.h> 25#include <sys/types.h>
29#include "config.h" 26#include "config.h"
30#include "gcc_extensions.h" 27#include "gcc_extensions.h"
31 28
29#undef MAX_PATH /* this avoids problems when building simulator */
30#define MAX_PATH 260
32#define MAX_OPEN_FILES 11 31#define MAX_OPEN_FILES 11
33 32
34#ifndef SEEK_SET 33#ifndef SEEK_SET