Lines Matching refs:memDC
1979 HDC memDC; in PHP_FUNCTION() local
2013 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
2015 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
2025 pPrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
2038 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
2045 SelectObject(memDC,hOld); in PHP_FUNCTION()
2047 DeleteDC(memDC); in PHP_FUNCTION()
2066 HDC memDC; in PHP_FUNCTION() local
2088 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
2090 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
2091 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
2098 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
2104 SelectObject(memDC,hOld); in PHP_FUNCTION()
2106 DeleteDC(memDC); in PHP_FUNCTION()