应该大家都知道刷屏器吧
而如果想用c++实现,就不得不讲到下面这个函数:
keybd_event(, , );//头文件 windows.h
想更多了解,推荐一篇博客
写的很好
好了,开始水代码
我的思路是用按键模拟粘贴
然后模拟发送
#include<iostream>
#include<windows.h>
using namespace std;
string s;
void fs(){
keybd_event(VK_CONTROL, (BYTE)0, 0 ,0);
keybd_event ('V', 0, 0 ,0);

最低0.47元/天 解锁文章
1739

被折叠的 条评论
为什么被折叠?



