c++ 锁定鼠标指针 查找程序路径
首先是锁定鼠标,话不多说,直接上代码!
#include
#include
using namespace std;
int main(){
POINT p;
while(true){
GetCursorPos(&p); //获取鼠标坐标
SetCursorPos(p.x, p.y);//更改鼠标坐标
Sleep(10); //给电脑休息时间
}
return 0;
}
这就是重复让鼠标停留在一个地方的方法,电脑会卡爆!
接下来就是查找程序路径,这听起来十分困难,但其实代码很简单!
#include
#include
using namespace std;
int main() {
char ExeFile[200];
GetModuleFileName(NULL, ExeFile, 200);
cout << ExeFile;
retu
共有 0 条评论