鼠标连点小程序,可以原来做一些神奇的事情:
#include
#include
#include
using namespace std;
int main()
{
int now=0;
char ch='0';
cout<<"B:begin"<<endl;
cout<<"S:stop"<<endl;
cout<<"E:exit"<<endl;
while(1)
{
if(kbhit())
ch=getch();
if(ch=='e')
break;
if(ch=='s')
now=0;
if(ch=='b')
now=1;
ch='0';
if(now)
{
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
}
Sleep(10);
}
}
其中倒数第三行的Sleep函数代表点击间隔,1000除以数值即为每秒点击次数。
mouse_event函数中的MOUSEEVENTF_LEFTUP和MOUSEEVENTF_LEFTDOWN中的LEFT可替换为RIGHT,从左键连点切换成右键。
f ( x ) = l g ( c o s ( x 2 ) ) f(x)=lg(cos(x^2)) f(x)=lg(cos(x2))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)