old-hiro/windows/monitor.hpp

14 lines
203 B
C++
Raw Normal View History

2016-05-15 10:45:15 +00:00
#if defined(Hiro_Monitor)
namespace hiro {
struct pMonitor {
static auto count() -> unsigned;
static auto geometry(unsigned monitor) -> Geometry;
static auto primary() -> unsigned;
};
}
#endif