Lines Matching refs:rc
1162 RECT rc = {0}; in PHP_FUNCTION() local
1185 GetClientRect(window, &rc); in PHP_FUNCTION()
1186 Width = rc.right; in PHP_FUNCTION()
1187 Height = rc.bottom; in PHP_FUNCTION()
1189 GetWindowRect(window, &rc); in PHP_FUNCTION()
1190 Width = rc.right - rc.left; in PHP_FUNCTION()
1191 Height = rc.bottom - rc.top; in PHP_FUNCTION()
1230 RECT rc = {0}; in PHP_FUNCTION() local
1247 GetWindowRect(window, &rc); in PHP_FUNCTION()
1248 Width = rc.right - rc.left; in PHP_FUNCTION()
1249 Height = rc.bottom - rc.top; in PHP_FUNCTION()
1256 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()