Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /* Stealth */
  2. #include <windows.h>
  3.  
  4. HWND stealth;
  5.  
  6. #define stealth_init() AllocConsole(); stealth = FindWindowA("ConsoleWindowClass", NULL);
  7. #define stealth_hide() ShowWindow(stealth, 0);
  8. #define stealth_show() ShowWindow(stealth, 1);
Add Comment
Please, Sign In to add comment