diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-10-22 12:50:14 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-10-22 12:50:14 +0000 |
| commit | 368e89e3bc88446c8fac3d5cfca266061f4e77fb (patch) | |
| tree | cf79403e4923e09c5801454077d8fc17685efe1d /apps/plugin.h | |
| parent | 082c7d3c6b6a868efb4340c34918e7aa2114f07f (diff) | |
| download | rockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.zip rockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.tar.gz rockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.tar.bz2 rockbox-368e89e3bc88446c8fac3d5cfca266061f4e77fb.tar.xz | |
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/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index faea847..56e0bfc 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -831,7 +831,7 @@ struct plugin_api { #endif int (*show_logo)(void); struct tree_context* (*tree_get_context)(void); - void (*set_current_file)(char* path); + void (*set_current_file)(const char* path); void (*set_dirfilter)(int l_dirfilter); #ifdef HAVE_WHEEL_POSITION |