bsnes-plus/bsnes/ui-qt/link/reader.hpp
2014-11-26 18:35:12 -05:00

15 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;