mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Dircache support for simulator also.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9365 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
dc8de7ea3d
commit
3881ce94bd
3 changed files with 93 additions and 23 deletions
|
@ -32,9 +32,14 @@ struct travel_data {
|
|||
struct dircache_entry *first;
|
||||
struct dircache_entry *ce;
|
||||
struct dircache_entry *down_entry;
|
||||
#ifdef SIMULATOR
|
||||
DIR *dir, *newdir;
|
||||
struct dirent *entry;
|
||||
#else
|
||||
struct fat_dir *dir;
|
||||
struct fat_dir newdir;
|
||||
struct fat_direntry entry;
|
||||
#endif
|
||||
int pathpos;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue