Lines Matching defs:rcNew
1687 RECT rcNew;
1704 SetRect (&rcNew, iX, iY, iX + iWidth, iY + iHeight);
1708 rcNew.left, rcNew.top,
1709 rcNew.right, rcNew.bottom);
1712 AdjustWindowRectEx (&rcNew, GetWindowLongPtr (hWnd, GWL_STYLE), FALSE, WS_EX_APPWINDOW);
1715 if (rcNew.left < GetSystemMetrics(SM_XVIRTUALSCREEN))
1717 iDx = GetSystemMetrics(SM_XVIRTUALSCREEN) - rcNew.left;
1718 rcNew.left += iDx;
1719 rcNew.right += iDx;
1722 if (rcNew.top < GetSystemMetrics(SM_YVIRTUALSCREEN))
1724 iDy = GetSystemMetrics(SM_YVIRTUALSCREEN) - rcNew.top;
1725 rcNew.top += iDy;
1726 rcNew.bottom += iDy;
1731 rcNew.left, rcNew.top,
1732 rcNew.right, rcNew.bottom);
1736 SetWindowPos (hWnd, *zstyle, rcNew.left, rcNew.top,
1737 rcNew.right - rcNew.left, rcNew.bottom - rcNew.top,