diff options
Diffstat (limited to 'backends/platform/ps2/asyncfio.h')
| -rw-r--r-- | backends/platform/ps2/asyncfio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/platform/ps2/asyncfio.h b/backends/platform/ps2/asyncfio.h index 4ce2aa15d1..b42141523b 100644 --- a/backends/platform/ps2/asyncfio.h +++ b/backends/platform/ps2/asyncfio.h @@ -31,14 +31,17 @@ public: AsyncFio(void); ~AsyncFio(void); int open(const char *name, int ioMode); + int open(const char *name, int ioMode, int mode); void close(int handle); void read(int fd, void *dest, unsigned int len); void write(int fd, const void *src, unsigned int len); + void remove(const char *name); int seek(int fd, int offset, int whence); int mkdir(const char *name); int dopen(const char *name); int dread(int fd, iox_dirent_t *dest); void dclose(int fd); + int chdir(const char *name); int mount(const char *mountpoint, const char *mountstring, int flag); int umount(const char *mountpoint); int sync(int fd); |
