Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. HWND msw = getwnd();
  2.     int msgboxID = MessageBox(
  3.         msw,
  4.         L"Supports the unban, visiting www.unban-taku.com ",
  5.         L"www.unban-taku.com",
  6.         MB_ICONASTERISK | MB_YESNO);
  7.  
  8.     if (msgboxID == IDNO){
  9.         MessageBox(
  10.             msw,
  11.             L"Sorry if you dont support taku, you cant use this, ciao",
  12.             L"www.unban-taku.com",
  13.             MB_ICONERROR );
  14.         FreeLibraryAndExitThread(hInstance, EXIT_FAILURE);
  15.     }
  16.     else{
  17.         ShellExecute(NULL, L"open", L"http://www.unban-taku.com/",
  18.             NULL, NULL, SW_SHOWNORMAL);
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement