old-hiro/windows/monitor.hpp
2016-05-15 12:45:15 +02:00

13 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