How to show windows message box with message and title in C Win32 API and GCC

1 Answer

0 votes
#include <windows.h> 
 
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInst, LPTSTR lpCmdLine, int nShowCmd) { 
    MessageBoxW(NULL, L"The Message", L"The Title", MB_OK | MB_ICONINFORMATION); 
     
    return 0; 
}
 
 
/*
run:
 
 
 
*/

 



answered Feb 3, 2020 by avibootz
edited Feb 3, 2020 by avibootz
...