bool SetRect(RECT rc, int xLeft, int yTop, int xRight, int yBottom) { rc.left = xLeft; rc.top = yTop; rc.right = xRight; rc.bottom = yBottom; return true; }