Home | History | Annotate | Download | only in win32

Lines Matching refs:rc

104 	RECT rc;
106 rc.left = 0;
107 rc.top = 0;
108 rc.right = width;
109 rc.bottom = height;
111 if (!AdjustWindowRect(&rc, GetWindowLong(m_window, GWL_STYLE), GetMenu(m_window) != NULL))
115 rc.right - rc.left, rc.bottom - rc.top,
122 RECT rc;
123 if (!GetClientRect(m_window, &rc))
126 return IVec2(rc.right - rc.left,
127 rc.bottom - rc.top);