Advertisement
Guest User

Untitled

a guest
Mar 25th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     while (true)
  2.     {
  3.         HWND h = FindWindowEx(0, 0, L"V8ServerCallWindow", 0);
  4.         while (h)
  5.         {          
  6.             ShowWindow(h, SW_HIDE);
  7.             h = FindWindowEx(0, h, L"V8ServerCallWindow", 0);
  8.         }
  9.        
  10.         Sleep(10);
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement