vitasdk
Documentation of the vitasdk
|
Go to the source code of this file.
Functions | |
SceUID | ksceIoOpen (const char *file, int flags, SceMode mode) |
Open or create a file for reading or writing. More... | |
int | ksceIoClose (SceUID fd) |
Delete a descriptor. More... | |
int | ksceIoRead (SceUID fd, void *data, SceSize size) |
Read input. More... | |
int | ksceIoPread (SceUID fd, void *data, SceSize size, SceOff offset) |
Read input at offset. More... | |
int | ksceIoWrite (SceUID fd, const void *data, SceSize size) |
Write output. More... | |
int | ksceIoPwrite (SceUID fd, const void *data, SceSize size, SceOff offset) |
Write output at offset. More... | |
SceOff | ksceIoLseek (SceUID fd, SceOff offset, int whence) |
Reposition read/write file descriptor offset. More... | |
int | ksceIoRemove (const char *file) |
Remove directory entry. More... | |
int | ksceIoRename (const char *oldname, const char *newname) |
Change the name of a file. More... | |
int | ksceIoSync (const char *device, unsigned int unk) |
Synchronize the file data on the device. More... | |
int | ksceIoSyncByFd (SceUID fd) |
Synchronize the file data for one file. More... | |