Home
last modified time | relevance | path

Searched refs:hdcOld (Results 1 – 2 of 2) sorted by relevance

/reactos/win32ss/gdi/ntgdi/
H A Ddcobjs.c350 HDC hdcOld; in NtGdiSelectBitmap() local
422 hdcOld = InterlockedCompareExchangePointer((PVOID*)&psurfNew->hdc, hdc, 0); in NtGdiSelectBitmap()
423 if (hdcOld != NULL) in NtGdiSelectBitmap()
426 ASSERT(hdcOld != hdc); in NtGdiSelectBitmap()
/reactos/dll/win32/comctl32/
H A Dcommctrl.c1692 HDC hdcNew, hdcOld; in COMCTL32_EnsureBitmapSize() local
1706 hdcOld = CreateCompatibleDC(NULL); in COMCTL32_EnsureBitmapSize()
1707 hOldDCBitmap = SelectObject(hdcOld, *pBitmap); in COMCTL32_EnsureBitmapSize()
1709 BitBlt(hdcNew, 0, 0, bmp.bmWidth, bmp.bmHeight, hdcOld, 0, 0, SRCCOPY); in COMCTL32_EnsureBitmapSize()
1720 SelectObject(hdcOld, hOldDCBitmap); in COMCTL32_EnsureBitmapSize()
1721 DeleteDC(hdcOld); in COMCTL32_EnsureBitmapSize()