Code:
HWND hWnd = CreateWindow(
szWindowClass,
szTitle,
WS_OVERLAPPEDWINDOW|WS_MINIMIZE,
CW_USEDEFAULT, CW_USEDEFAULT,
100, 100,
NULL,
NULL,
hInstance,
NULL
);
My goal is to make window, which shows minimalize tray onli when mouse is over it. I hope this is possible without some hellcomplicated code. I am C++ beginner which have problems to declare array

