Reputation: 105037
How can I do this? I've tried IsWindowVisible()
but that doesn't seem to do the job.
Upvotes: 5
Views: 3312
Reputation: 5882
windowsx.h
has #define IsMinimized(hwnd) IsIconic(hwnd)
Thus the answer is if (IsMinimized(hwnd)) { }
Upvotes: 0