| 142 | } |
| 143 | |
| 144 | void Clicker::middleRandomClick() |
| 145 | { |
| 146 | POINT mouse_pos; |
| 147 | |
| 148 | while (_run) { |
| 149 | GetCursorPos(&mouse_pos); |
| 150 | mouse_event(MOUSEEVENTF_MIDDLEDOWN | MOUSEEVENTF_MIDDLEUP, mouse_pos.x, mouse_pos.y, 0, 0); |
| 151 | msleep(QRandomGenerator::global()->bounded(0, _max_random_interval)); |
| 152 | } |
| 153 | } |
| 154 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected