summaryrefslogtreecommitdiffstats
path: root/uisimulator/x11/file.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-01-09 00:55:00 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-01-09 00:55:00 +0000
commitc78e1b07fead2b5861fb6fc4c9ba130660fb323f (patch)
tree267406ed9e1e3c68238f688934d2088a1fa7c8e3 /uisimulator/x11/file.h
parent0e342181c3f96890506aa8720ac2d680b97c12e4 (diff)
downloadrockbox-c78e1b07fead2b5861fb6fc4c9ba130660fb323f.tar.gz
rockbox-c78e1b07fead2b5861fb6fc4c9ba130660fb323f.zip
The much-anticipated queue patch by Hardeep Sidhu. Queue a file by holding down PLAY on it while playing other music.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3040 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/file.h')
-rw-r--r--uisimulator/x11/file.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h
index 28c2f2c17a..134019148c 100644
--- a/uisimulator/x11/file.h
+++ b/uisimulator/x11/file.h
@@ -21,13 +21,18 @@
#include <sys/types.h>
int x11_open(char *name, int opts);
+int x11_creat(char *name, int mode);
+int x11_remove(char *name);
#define open(x,y) x11_open(x,y)
+#define creat(x,y) x11_open(x,y)
+#define remove(x) x11_remove(x)
#include "../../firmware/common/file.h"
extern int open(char* pathname, int flags);
extern int close(int fd);
extern int read(int fd, void* buf, int count);
+extern int write(int fd, void* buf, int count);
extern int lseek(int fd, int offset, int whence);
extern int printf(const char *format, ...);