PS2SDK
PS2 Homebrew Libraries
|
#include <io_common.h>
Go to the source code of this file.
Macros | |
#define | FIO_WAIT 0 |
#define | FIO_NOWAIT 1 |
#define | FIO_COMPLETE 1 |
#define | FIO_INCOMPLETE 0 |
#define | EOF (-1) |
Functions | |
int | fioInit (void) |
void | fioExit (void) |
int | fioOpen (const char *fname, int mode) |
int | fioClose (int fd) |
int | fioRead (int fd, void *buff, int buff_size) |
int | fioWrite (int fd, const void *buff, int buff_size) |
int | fioLseek (int fd, int offset, int whence) |
int | fioMkdir (const char *dirname) |
int | fioPutc (int fd, int c) |
int | fioGetc (int fd) |
int | fioGets (int fd, char *buff, int n) |
void | fioSetBlockMode (int blocking) |
int | fioSync (int mode, int *retVal) |
int | fioIoctl (int fd, int request, void *data) |
int | fioDopen (const char *name) |
int | fioDclose (int fd) |
int | fioDread (int fd, io_dirent_t *buf) |
int | fioGetstat (const char *name, io_stat_t *buf) |
int | fioChstat (const char *name, io_stat_t *buf, unsigned int cbit) |
int | fioRemove (const char *name) |
int | fioFormat (const char *name) |
int | fioRmdir (const char *dirname) |
EE FILE IO handling
Definition in file fileio.h.