How can I customize the size of a window I made using win32?
My Code:
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow){
MessageBox(NULL, "HELLO WORLD!","JANELA!", 0);
return 0;
}
But the window became very small.