Some cleanups + we don't need a non-libretro codepath

This commit is contained in:
twinaphex
2021-06-05 20:56:49 +02:00
parent 0acfea1ca9
commit e154706586
7 changed files with 1 additions and 47 deletions

View File

@@ -1,28 +1,18 @@
#ifndef _FCEU_FILE_H
#define _FCEU_FILE_H
#ifdef __LIBRETRO__
typedef struct {
uint8 *data;
uint32 size;
uint32 location;
} MEMWRAP;
#endif
typedef struct {
#ifdef __LIBRETRO__
MEMWRAP *fp;
#else
void *fp; /* FILE* or ptr to ZIPWRAP */
#endif
uint32 type; /* 0=normal file, 1=gzip, 2=zip */
} FCEUFILE;
#ifdef __LIBRETRO__
FCEUFILE *FCEU_fopen(const char *path, const char *ipsfn, char *mode, char *ext, uint8 *buffer, size_t bufsize);
#else
FCEUFILE *FCEU_fopen(const char *path, const char *ipsfn, char *mode, char *ext);
#endif
int FCEU_fclose(FCEUFILE*);
uint64 FCEU_fread(void *ptr, size_t size, size_t nmemb, FCEUFILE*);
uint64 FCEU_fwrite(void *ptr, size_t size, size_t nmemb, FCEUFILE*);