Lines Matching refs:memDC
1108 HDC memDC; in PHP_FUNCTION() local
1141 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1143 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1145 PrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
1152 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1158 SelectObject(memDC,hOld); in PHP_FUNCTION()
1160 DeleteDC(memDC); in PHP_FUNCTION()
1178 HDC memDC; in PHP_FUNCTION() local
1196 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1198 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1199 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
1206 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1212 SelectObject(memDC,hOld); in PHP_FUNCTION()
1214 DeleteDC(memDC); in PHP_FUNCTION()