- Implement window message is active icon.

svn path=/trunk/; revision=42788
This commit is contained in:
James Tabor
2009-08-20 01:49:25 +00:00
parent 9757ce3f97
commit 5e29da18bf
+9 -1
View File
@@ -1525,7 +1525,15 @@ User32DefWindowProc(HWND hWnd,
return ((LRESULT)LoadIconW(0, IDI_APPLICATION));
}
/* FIXME: WM_ISACTIVEICON */
case WM_ISACTIVEICON:
{
PWND pWnd;
BOOL isai;
pWnd = ValidateHwnd(hWnd);
if (!pWnd) return 0;
isai = (pWnd->state & WNDS_ACTIVEFRAME) != 0;
return isai;
}
case WM_NOTIFYFORMAT:
{