mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
20 lines
405 B
C++
Executable file
20 lines
405 B
C++
Executable file
struct Utility {
|
|
void setMode(Interface::Mode mode);
|
|
void resizeMainWindow(bool shrink = false);
|
|
void toggleFullScreen();
|
|
void bindVideoFilter();
|
|
void bindVideoShader();
|
|
|
|
void updateStatus();
|
|
void setStatusText(const string &text);
|
|
void showMessage(const string &text);
|
|
|
|
Utility();
|
|
|
|
private:
|
|
time_t statusTime;
|
|
string statusText;
|
|
string statusMessage;
|
|
};
|
|
|
|
extern Utility *utility;
|