Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <ctime>
- #include <stdio.h>
- #include <iostream>
- int main()
- {
- int contar = 0;
- while(true)
- {
- Sleep(100);
- if(GetAsyncKeyState(VK_LBUTTON))
- {
- contar++;
- printf("Clicou %d \n", contar);
- }
- }
- return false;
- }
- // Criado por Bruno da Silva
- // www.ips-team.blogspot.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement