Home | History | Annotate | Download | only in wgl

Lines Matching refs:RECT

81    RECT rect;
160 rect.left = 0;
161 rect.top = 0;
162 rect.right = rect.left + iWidth;
163 rect.bottom = rect.top + iHeight;
175 AdjustWindowRectEx(&rect, dwStyle, FALSE, dwExStyle);
183 rect.right - rect.left, /* width */
184 rect.bottom - rect.top, /* height */
198 GetClientRect(hWnd, &rect);
199 assert(rect.left == 0);
200 assert(rect.top == 0);
201 assert(rect.right - rect.left == iWidth);
202 assert(rect.bottom - rect.top == iHeight);