| 109 | } |
| 110 | |
| 111 | void Clicker::middleClick() |
| 112 | { |
| 113 | POINT mouse_pos; |
| 114 | |
| 115 | while (_run) { |
| 116 | GetCursorPos(&mouse_pos); |
| 117 | mouse_event(MOUSEEVENTF_MIDDLEDOWN | MOUSEEVENTF_MIDDLEUP, mouse_pos.x, mouse_pos.y, 0, 0); |
| 118 | msleep(_interval); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | void Clicker::leftRandomClick() |
| 123 | { |
nothing calls this directly
no outgoing calls
no test coverage detected