Skip to content

Brrusco/AutoClicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AutoClicker
Tool per la ripetizione a lungo termine di semplici input dal mouse
simulazione imput realizzata tramte la funzione SendInput presente nella libreria Windows.h
snippet esempio simulazione :
INPUT fliNPUT = { 0 };
fliNPUT.type = INPUT_MOUSE;
fliNPUT.mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
SendInput(1, &fliNPUT, sizeof(fliNPUT));
ZeroMemory(&fliNPUT, sizeof(fliNPUT));
fliNPUT.type = INPUT_MOUSE;
fliNPUT.mi.dwFlags = MOUSEEVENTF_LEFTUP;
SendInput(1, &fliNPUT, sizeof(fliNPUT));

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages