diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-10 13:29:52 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-10 13:29:52 +0000 |
| commit | a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6 (patch) | |
| tree | ef00c3ec8074ccb080b221c7d1dd4b3d03c8fd87 /firmware/include | |
| parent | 5fc1b64ae051e454d2b3bf3a20be5d88937e55e7 (diff) | |
| download | rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.zip rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.gz rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.bz2 rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.xz | |
Finally, the archos directory sandbox works in the same way for both X11 and win32 simulators. Unfortunately, this breaks the VC++ compatibility. Also, the plugin API now supports DEBUGF. Last, but not least, we have a new plugin, vbrfix.rock.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4726 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/file.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/firmware/include/file.h b/firmware/include/file.h index bb0aad6..c58139d 100644 --- a/firmware/include/file.h +++ b/firmware/include/file.h @@ -75,18 +75,6 @@ typedef ssize_t (*write_func)(int fd, const void *buf, size_t count); typedef void (*qsort_func)(void *base, size_t nmemb, size_t size, int(*_compar)(const void *, const void *)); - -#if defined(__MINGW32__) && defined(SIMULATOR) -extern int open(const char*, int flags, ...); -extern int close(int fd); -extern int read(int, void*, unsigned int); -extern long lseek(int, long, int); -extern int creat(const char *, int); -extern int write(int, const void*, unsigned int); -extern int remove(const char*); - -#else - #ifndef SIMULATOR extern int open(const char* pathname, int flags); extern int close(int fd); @@ -100,6 +88,5 @@ extern int rename(const char* path, const char* newname); extern int ftruncate(int fd, off_t length); extern int filesize(int fd); #endif /* SIMULATOR */ -#endif /* __MINGW32__ */ #endif |