Lines Matching refs:hdc
1893 HDC hdc; in PHP_FUNCTION() local
1914 hdc = GetDC(0); in PHP_FUNCTION()
1928 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1929 memBM = CreateCompatibleBitmap(hdc, Width, Height); in PHP_FUNCTION()
1963 ReleaseDC( 0, hdc ); in PHP_FUNCTION()
1980 HDC hdc; in PHP_FUNCTION() local
1987 hdc = GetDC(0); in PHP_FUNCTION()
1993 if (!hdc) { in PHP_FUNCTION()
2003 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
2004 memBM = CreateCompatibleBitmap(hdc, Width, Height); in PHP_FUNCTION()
2006 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
2022 ReleaseDC( 0, hdc ); in PHP_FUNCTION()