Replace direct file access with VFS routines
This commit is contained in:
@@ -2,17 +2,14 @@
|
||||
#define _FCEU_ENDIAN_H
|
||||
|
||||
#include "fceu-memory.h"
|
||||
#include "drivers/libretro/libretro-common/include/streams/memory_stream.h"
|
||||
#include <streams/memory_stream.h>
|
||||
|
||||
int write32le_mem(uint32 b, memstream_t *mem);
|
||||
int read32le_mem(uint32 *Bufo, memstream_t *mem);
|
||||
|
||||
int write16le(uint16 b, FILE *fp);
|
||||
int write32le(uint32 b, FILE *fp);
|
||||
int read32le(uint32 *Bufo, FILE *fp);
|
||||
void FlipByteOrder(uint8 *src, uint32 count);
|
||||
|
||||
void FCEU_en32lsb(uint8 *, uint32);
|
||||
uint32 FCEU_de32lsb(uint8 *);
|
||||
uint32 FCEU_de32lsb(const uint8 *);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user