summaryrefslogtreecommitdiff
path: root/apps/tree.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-10-22 12:50:14 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-10-22 12:50:14 +0000
commit368e89e3bc88446c8fac3d5cfca266061f4e77fb (patch)
treecf79403e4923e09c5801454077d8fc17685efe1d /apps/tree.h
parent082c7d3c6b6a868efb4340c34918e7aa2114f07f (diff)
downloadrockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.tar.gz
rockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.zip
simplify rockbox_browse a bit and reuse buffer.
use const for argument of set_current_file. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28328 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.h')
-rw-r--r--apps/tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.h b/apps/tree.h
index 993d1b4569..a74960f7a5 100644
--- a/apps/tree.h
+++ b/apps/tree.h
@@ -75,7 +75,7 @@ void tree_mem_init(void) INIT_ATTR;
75void tree_gui_init(void) INIT_ATTR; 75void tree_gui_init(void) INIT_ATTR;
76char* get_current_file(char* buffer, size_t buffer_len); 76char* get_current_file(char* buffer, size_t buffer_len);
77void set_dirfilter(int l_dirfilter); 77void set_dirfilter(int l_dirfilter);
78void set_current_file(char *path); 78void set_current_file(const char *path);
79int rockbox_browse(const char *root, int dirfilter); 79int rockbox_browse(const char *root, int dirfilter);
80bool create_playlist(void); 80bool create_playlist(void);
81void resume_directory(const char *dir); 81void resume_directory(const char *dir);