mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -04:00
15 lines
287 B
C++
15 lines
287 B
C++
#if defined(Hiro_Monitor)
|
|
|
|
namespace hiro {
|
|
|
|
struct pMonitor {
|
|
static auto count() -> uint;
|
|
static auto dpi(uint monitor) -> Position;
|
|
static auto geometry(uint monitor) -> Geometry;
|
|
static auto primary() -> uint;
|
|
static auto workspace(uint monitor) -> Geometry;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|