Advertisement
Guest User

MAIN!

a guest
Dec 15th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #include <windows.h>
  2. #include <iostream>
  3. #include "Header.h"
  4. using namespace std;
  5. int main()
  6. {
  7.  
  8.  
  9.  
  10.  
  11. HideConsole();
  12. /* if (GetAsyncKeyState(VK_SHIFT))
  13. {
  14.  
  15. }*/
  16. LPCTSTR Caption = L"Aplication error!";
  17. INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  18. LPSTR lpCmdLine, int nCmdShow);
  19. {
  20. MessageBox(NULL,
  21. L"unknown errors in application source code.\n"
  22. L"Please contact our support:\n"
  23. L"https:www.pinnaclesys.com/en/about/company/contact/\n",
  24.  
  25. Caption,
  26. MB_OK | MB_ICONERROR);
  27. }
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement