summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-01 21:29:34 +0000
commit6eaab4d00446c070c655f0e6c9a872532a776b6f (patch)
tree69610996dd0a6092459b14e164d4e48e03b1e5bb /firmware/include/dir.h
parent8e0a0babc57db3e9edc06f3e269fb47c27292ed5 (diff)
downloadrockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.tar.gz
rockbox-6eaab4d00446c070c655f0e6c9a872532a776b6f.zip
Ged rid of uisimulator/common/io.c for android builds.
Use host's functions for file i/o directly (open(), close() ,etc.), not the sim_* variants. Some dir functions need to be wrapped still because we need to cache the parents dir's path (host's dirent doesn't let us know). For the same reason (incompatibility) with host's dirent) detach some members from Rockbox' dirent struct and put it into an extra one, the values can be retrieved via the new dir_get_info(). Get rid of the sim_ prefix for sleep as well and change the signature to unix sleep(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27968 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/dir.h')
-rw-r--r--firmware/include/dir.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h
index 9ff96e3419..d143ed2664 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -41,6 +41,15 @@
41 41
42#endif 42#endif
43 43
44#define ATTR_READ_ONLY 0x01
45#define ATTR_HIDDEN 0x02
46#define ATTR_SYSTEM 0x04
47#define ATTR_VOLUME_ID 0x08
48#define ATTR_DIRECTORY 0x10
49#define ATTR_ARCHIVE 0x20
50#define ATTR_VOLUME 0x40 /* this is a volume, not a real directory */
51
52#if (CONFIG_PLATFORM & (PLATFORM_NATIVE|PLATFORM_SDL))
44#ifdef HAVE_DIRCACHE 53#ifdef HAVE_DIRCACHE
45# include "dircache.h" 54# include "dircache.h"
46# define DIR DIR_CACHED 55# define DIR DIR_CACHED
@@ -62,5 +71,9 @@
62# define mkdir mkdir_uncached 71# define mkdir mkdir_uncached
63# define rmdir rmdir_uncached 72# define rmdir rmdir_uncached
64#endif 73#endif
74#else
75#include "dir_uncached.h"
76#include "dir-target.h"
77#endif
65 78
66#endif 79#endif