MCPcopy Create free account
hub / github.com/SeaEpoch/MouseClick / rightClick

Method rightClick

src/utils/clicker.cpp:100–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100void 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
111void Clicker::middleClick()
112{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected