mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
309 B
C++
16 lines
309 B
C++
class Reader : public library {
|
|
public:
|
|
string compressionList;
|
|
string extensionList;
|
|
|
|
function<const char* ()> supported;
|
|
function<bool (string&, uint8_t*&, unsigned&)> load;
|
|
|
|
const char* direct_supported();
|
|
bool direct_load(string&, uint8_t*&, unsigned&);
|
|
|
|
Reader();
|
|
};
|
|
|
|
extern Reader reader;
|