Lines Matching refs:memDC
1894 HDC memDC; in PHP_FUNCTION() local
1928 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1930 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1940 pPrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
1953 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1960 SelectObject(memDC,hOld); in PHP_FUNCTION()
1962 DeleteDC(memDC); in PHP_FUNCTION()
1981 HDC memDC; in PHP_FUNCTION() local
2003 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
2005 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
2006 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
2013 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
2019 SelectObject(memDC,hOld); in PHP_FUNCTION()
2021 DeleteDC(memDC); in PHP_FUNCTION()