mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
15 lines
378 B
C
15 lines
378 B
C
#ifndef __SSNES_FILE_H
|
|
#define __SSNES_FILE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
ssize_t read_file(FILE *file, void **buf);
|
|
|
|
void load_state(const char* path, uint8_t* data, size_t size);
|
|
void write_file(const char* path, uint8_t* data, size_t size);
|
|
void load_save_file(const char* path, int type);
|
|
void save_file(const char* path, int type);
|
|
|
|
#endif
|