mirror of https://github.com/bsnes-emu/bsnes.git
26 lines
586 B
C++
26 lines
586 B
C++
#if defined(Hiro_Application)
|
|
|
|
namespace hiro {
|
|
|
|
struct pApplication {
|
|
static auto modal() -> bool;
|
|
static auto run() -> void;
|
|
static auto pendingEvents() -> bool;
|
|
static auto processEvents() -> void;
|
|
static auto quit() -> void;
|
|
static auto setScreenSaver(bool screenSaver) -> void;
|
|
|
|
static auto initialize() -> void;
|
|
|
|
struct State {
|
|
int modalCount = 0; //number of modal loops
|
|
Timer modalTimer; //to run Application during modal events
|
|
pToolTip* toolTip = nullptr; //active toolTip
|
|
};
|
|
static auto state() -> State&;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|