Hi everyone.
I apologize for asking such a stupid question. But I can't do anything about it.
I need to create a window without borders, buttons to close, minimize and all that surrounds it.
And the most important condition is that it maximized to the full screen, but without hit the taskbar.
I tried this:
HWND hwnd = CreateWindowExW(0, L"hello", L"hello", WS_POPUP, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
ShowWindow(hwnd, SW_SHOWMAXIMIZED);
But that damn window hit the taskbar.
That's what I need:

I don't need this:

Thanks!