Lines Matching defs:rcNew
1966 RECT rcNew;
1985 SetRect(&rcNew, iX, iY, iX + iWidth, iY + iHeight);
1988 rcNew.left, rcNew.top, rcNew.right, rcNew.bottom);
1990 AdjustWindowRectEx(&rcNew, GetWindowLongPtr(hWnd, GWL_STYLE), FALSE,
1994 if (rcNew.left < GetSystemMetrics(SM_XVIRTUALSCREEN)) {
1995 iDx = GetSystemMetrics(SM_XVIRTUALSCREEN) - rcNew.left;
1996 rcNew.left += iDx;
1997 rcNew.right += iDx;
2000 if (rcNew.top < GetSystemMetrics(SM_YVIRTUALSCREEN)) {
2001 iDy = GetSystemMetrics(SM_YVIRTUALSCREEN) - rcNew.top;
2002 rcNew.top += iDy;
2003 rcNew.bottom += iDy;
2007 rcNew.left, rcNew.top, rcNew.right, rcNew.bottom);
2010 SetWindowPos(hWnd, *zstyle, rcNew.left, rcNew.top,
2011 rcNew.right - rcNew.left, rcNew.bottom - rcNew.top, 0);