How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks
Printable View
How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks
The Windows API functions and the MFC functions share the same name (IsIconic()/IsZoomed()). The only diffrence is that the Windows API functions require a HWND to be passed as an argument. The prototypes looks like this
BOOL IsIconic(HWND hWnd);
BOOL IsZoomed(HWND hWnd);