menu and controls wip..
[fceu.git] / file.h
1 int FASTAPASS(2) FCEU_fopen(char *path, char *mode);
2 int FASTAPASS(1) FCEU_fclose(int stream);
3 size_t FASTAPASS(3) FCEU_fread(void *ptr, size_t size, size_t nmemb, int stream);
4 size_t FASTAPASS(3) FCEU_fwrite(void *ptr, size_t size, size_t nmemb, int stream);
5 int FASTAPASS(3) FCEU_fseek(int stream, long offset, int whence);
6 long FASTAPASS(1) FCEU_ftell(int stream);
7 void FASTAPASS(1) FCEU_rewind(int stream);
8 int FASTAPASS(2) FCEU_read32(void *Bufo, int fp);
9 int FASTAPASS(1) FCEU_fgetc(int stream);
10 long FASTAPASS(1) FCEU_fgetsize(int stream);
11 int FASTAPASS(1) FCEU_fisarchive(int stream);
12
13 #define FCEUD_UTF8fopen fopen
14