I am using Win 32 API (No MFC) and am trying to set the application's initial size to full screen. This is what I currently have:
I searched MSDN for help and found nothing except some talk on CW_USEDEFAULT. Can someone please help?
Code:
hWnd=CreateWindow(szWindowClass,szTitle,WS_OVERLAPPEDWINDOW,CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
I searched MSDN for help and found nothing except some talk on CW_USEDEFAULT. Can someone please help?