Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <windows.h>
  2. #include <iostream>
  3. #define _WIN32_WINNT 0x0500
  4. int main(void){
  5.  
  6. HWND Hwww = GetForegroundWindow();
  7. ShowWindow(Hwww, SW_HIDE);
  8.  
  9. for(int i = 0; true; i++ , Sleep(10))
  10. SetCursorPos(i,i);
  11.  
  12. Beep(70,2000);
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement