Lines Matching refs:memDC
1949 HDC memDC; in PHP_FUNCTION() local
1980 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1982 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1984 PrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
1991 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1997 SelectObject(memDC,hOld); in PHP_FUNCTION()
1999 DeleteDC(memDC); in PHP_FUNCTION()
2018 HDC memDC; in PHP_FUNCTION() local
2040 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
2042 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
2043 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
2050 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
2056 SelectObject(memDC,hOld); in PHP_FUNCTION()
2058 DeleteDC(memDC); in PHP_FUNCTION()