summaryrefslogtreecommitdiff
path: root/firmware/export/filefuncs.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/export/filefuncs.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/export/filefuncs.h')
-rw-r--r--firmware/export/filefuncs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/filefuncs.h b/firmware/export/filefuncs.h
index 3745c6bee3..f69c6da29c 100644
--- a/firmware/export/filefuncs.h
+++ b/firmware/export/filefuncs.h
@@ -22,7 +22,9 @@
22#ifndef __INCLUDE_FILEFUNCS_H_ 22#ifndef __INCLUDE_FILEFUNCS_H_
23#define __INCLUDE_FILEFUNCS_H_ 23#define __INCLUDE_FILEFUNCS_H_
24 24
25#include <stdbool.h>
25#include "config.h" 26#include "config.h"
27#include "dir.h"
26 28
27#ifdef HAVE_MULTIVOLUME 29#ifdef HAVE_MULTIVOLUME
28int strip_volume(const char* name, char* namecopy); 30int strip_volume(const char* name, char* namecopy);
@@ -32,5 +34,6 @@ int strip_volume(const char* name, char* namecopy);
32bool file_exists(const char *file); 34bool file_exists(const char *file);
33bool dir_exists(const char *path); 35bool dir_exists(const char *path);
34#endif 36#endif
37extern struct dirinfo dir_get_info(struct DIR* parent, struct dirent *entry);
35 38
36#endif /* __INCLUDE_FILEFUNCS_H_ */ 39#endif /* __INCLUDE_FILEFUNCS_H_ */