mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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
This commit is contained in:
parent
2e7d92fef7
commit
9c0b2479f7
41 changed files with 620 additions and 248 deletions
|
@ -193,8 +193,8 @@ struct codec_api ci = {
|
|||
|
||||
void codec_get_full_path(char *path, const char *codec_root_fn)
|
||||
{
|
||||
snprintf(path, MAX_PATH-1, CODECS_DIR "/%s." CODEC_EXTENSION,
|
||||
codec_root_fn);
|
||||
snprintf(path, MAX_PATH-1, "%s/%s." CODEC_EXTENSION,
|
||||
CODECS_DIR, codec_root_fn);
|
||||
}
|
||||
|
||||
static int codec_load_ram(int size, struct codec_api *api)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue