![]() |
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. | |
| int | ksceIoClose (SceUID fd) |
| Delete a descriptor. | |
| int | ksceIoRead (SceUID fd, void *data, SceSize size) |
| Read input. | |
| int | ksceIoPread (SceUID fd, void *data, SceSize size, SceOff offset) |
| Read input at offset. | |
| int | ksceIoWrite (SceUID fd, const void *data, SceSize size) |
| Write output. | |
| int | ksceIoPwrite (SceUID fd, const void *data, SceSize size, SceOff offset) |
| Write output at offset. | |
| SceOff | ksceIoLseek (SceUID fd, SceOff offset, int whence) |
| Reposition read/write file descriptor offset. | |
| int | ksceIoRemove (const char *file) |
| Remove directory entry. | |
| int | ksceIoRename (const char *oldname, const char *newname) |
| Change the name of a file. | |
| int | ksceIoSync (const char *device, unsigned int unk) |
| Synchronize the file data on the device. | |
| int | ksceIoSyncByFd (SceUID fd) |
| Synchronize the file data for one file. | |