mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
315 B
C++
18 lines
315 B
C++
#if defined(Hiro_Application)
|
|
|
|
namespace hiro {
|
|
|
|
struct pApplication {
|
|
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;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|