Skip to content

Instantly share code, notes, and snippets.

@Yangff
Created January 19, 2016 12:07
Show Gist options
  • Save Yangff/370bb25660b9052d38e1 to your computer and use it in GitHub Desktop.
Save Yangff/370bb25660b9052d38e1 to your computer and use it in GitHub Desktop.
click..
#include <cstdio>
#include <windows.h>
int main(){
for (;;){
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
Sleep(40);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
Sleep(30);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment