mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
694 B
C++
Executable File
16 lines
694 B
C++
Executable File
struct Interface : Emulator::Interface::Bind {
|
|
void loadRequest(unsigned id, const string &name, const string &type);
|
|
void loadRequest(unsigned id, const string &path);
|
|
void saveRequest(unsigned id, const string &path);
|
|
uint32_t videoColor(unsigned source, uint16_t red, uint16_t green, uint16_t blue);
|
|
void videoRefresh(const uint32_t *data, unsigned pitch, unsigned width, unsigned height);
|
|
void audioSample(int16_t lsample, int16_t rsample);
|
|
int16_t inputPoll(unsigned port, unsigned device, unsigned input);
|
|
unsigned dipSettings(const Markup::Node &node);
|
|
string path(unsigned group);
|
|
string server();
|
|
void notify(const string &text);
|
|
};
|
|
|
|
extern Interface *interface;
|