| 98 | } |
| 99 | |
| 100 | void Clicker::rightClick() |
| 101 | { |
| 102 | POINT mouse_pos; |
| 103 | |
| 104 | while (_run) { |
| 105 | GetCursorPos(&mouse_pos); |
| 106 | mouse_event(MOUSEEVENTF_RIGHTDOWN | MOUSEEVENTF_RIGHTUP, mouse_pos.x, mouse_pos.y, 0, 0); |
| 107 | msleep(_interval); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void Clicker::middleClick() |
| 112 | { |
nothing calls this directly
no outgoing calls
no test coverage detected