mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
9 lines
262 B
C++
Executable file
9 lines
262 B
C++
Executable file
struct Interface {
|
|
virtual void videoRefresh(const uint16_t *data);
|
|
virtual void audioSample(int16_t sample);
|
|
virtual int16_t inputPoll(bool port, unsigned device, unsigned id);
|
|
|
|
virtual void message(const string &text);
|
|
};
|
|
|
|
extern Interface *interface;
|