summaryrefslogtreecommitdiffstats
path: root/uisimulator/x11/dir.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-07 12:06:32 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-07 12:06:32 +0000
commit27dfc7c14ea181d538446138801537a713601ee6 (patch)
treeda820bcc5ef811c9d3a370e80f6afa0a571a9897 /uisimulator/x11/dir.h
parent8ae29ff4b2552f6c91c9a1b55d82fb9d8452bf7d (diff)
downloadrockbox-27dfc7c14ea181d538446138801537a713601ee6.tar.gz
rockbox-27dfc7c14ea181d538446138801537a713601ee6.zip
extended the wrapper layer, we can't depend on much in the "real" dirent
struct since it differs too much between unixes. d_name is there, the rest we get with stat() calls to simulate the target dirent properly git-svn-id: svn://svn.rockbox.org/rockbox/trunk@492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/dir.h')
-rw-r--r--uisimulator/x11/dir.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/uisimulator/x11/dir.h b/uisimulator/x11/dir.h
index b1df855311..a3898076f6 100644
--- a/uisimulator/x11/dir.h
+++ b/uisimulator/x11/dir.h
@@ -20,6 +20,7 @@
#define dirent x11_dirent
#define readdir(x) x11_readdir(x)
#define opendir(x) x11_opendir(x)
+#define closedir(x) x11_closedir(x)
/*
* The defines above should let us use the readdir() and opendir() in target
@@ -38,6 +39,17 @@
#include "../../firmware/common/dir.h"
-extern DIR *x11_opendir(char *name);
-extern struct dirent* x11_readdir(DIR* dir);
+#define SIMULATOR_ARCHOS_ROOT "archos"
+struct mydir {
+ DIR *dir;
+ char *name;
+};
+
+typedef struct mydir MYDIR;
+
+extern MYDIR *x11_opendir(char *name);
+extern struct dirent* x11_readdir(MYDIR* dir);
+extern void x11_closedir(MYDIR *dir);
+
+#define DIR MYDIR