bsnes-plus/snesreader/snesreader.hpp
2014-11-26 18:35:12 -05:00

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);
}