Добавил в функцию Do_Mouse_Click() щелчок правой кнопкой, теперь мой рекорд 140 кликов в секунду )))
private const int MOUSEEVENTF_MOVE = 0x0001; /* mouse move */ private const int MOUSEEVENTF_LEFTDOWN = 0x0002; /* left button down */ private const int MOUSEEVENTF_LEFTUP = 0x0004; /* left button up */ private const int MOUSEEVENTF_RIGHTDOWN = 0x0008; /* right button down */ private const int MOUSEEVENTF_RIGHTUP = 0x0010; /* right button down */
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)] public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);