mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
7 lines
187 B
C++
7 lines
187 B
C++
#include <stdint.h>
|
|
namespace nall { class string; }
|
|
|
|
extern "C" {
|
|
const char* snesreader_supported();
|
|
bool snesreader_load(nall::string &filename, uint8_t *&data, unsigned &size);
|
|
}
|