| 148 | } |
| 149 | |
| 150 | POINT MessageInput::client_to_screen(int x, int y) |
| 151 | { |
| 152 | POINT point = { x, y }; |
| 153 | if (hwnd_) { |
| 154 | ClientToScreen(hwnd_, &point); |
| 155 | } |
| 156 | return point; |
| 157 | } |
| 158 | |
| 159 | void MessageInput::save_cursor_pos() |
| 160 | { |
nothing calls this directly
no outgoing calls
no test coverage detected