[the forum for Win32 API is https://learn.microsoft.com/en-us/answers/tags/224/windows-api-win32]
You can do for example :
RECT rect;
SystemParametersInfo(SPI_GETWORKAREA, 0, &rect, 0);
SetWindowLong(hWnd, GWL_STYLE, WS_POPUP | WS_VISIBLE | WS_MINIMIZEBOX);
SetWindowPos(hWnd, NULL, 0, 0, rect.right - rect.left, rect.bottom - rect.top, SWP_NOZORDER);