old-hiro/reference/monitor.cpp
2016-05-15 12:45:15 +02:00

15 lines
187 B
C++

namespace phoenix {
unsigned pMonitor::count() {
return 1;
}
Geometry pMonitor::geometry(unsigned monitor) {
return {0, 0, 0, 0};
}
unsigned pMonitor::primary() {
return 0;
}
}