mirror of https://github.com/bsnes-emu/bsnes.git
14 lines
203 B
C++
14 lines
203 B
C++
|
#if defined(Hiro_Monitor)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pMonitor {
|
||
|
static auto count() -> unsigned;
|
||
|
static auto geometry(unsigned monitor) -> Geometry;
|
||
|
static auto primary() -> unsigned;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|