| 424 | } |
| 425 | |
| 426 | void MSWindowsScreen::getShape(int32_t &x, int32_t &y, int32_t &w, int32_t &h) const |
| 427 | { |
| 428 | assert(m_class != 0); |
| 429 | |
| 430 | x = m_x; |
| 431 | y = m_y; |
| 432 | w = m_w; |
| 433 | h = m_h; |
| 434 | } |
| 435 | |
| 436 | void MSWindowsScreen::getCursorPos(int32_t &x, int32_t &y) const |
| 437 | { |
nothing calls this directly
no outgoing calls
no test coverage detected