Home | History | Annotate | Download | only in coders

Lines Matching refs:hDC

158       HDC
159 hDC,
188 hDC=GetDC(NULL);
189 if (hDC == 0)
191 hBitmap=CreateDIBSection(hDC,&DIBinfo,DIB_RGB_COLORS,(void **) &ppBits,
193 ReleaseDC(NULL,hDC);
197 hDC=CreateCompatibleDC(NULL);
198 if (hDC == 0)
203 hOldBitmap=(HBITMAP) SelectObject(hDC,hBitmap);
206 DeleteDC(hDC);
213 SelectPalette(hDC, hPal, FALSE);
214 RealizePalette(hDC);
217 BitBlt(hDC,0,0,(int) image->columns,(int) image->rows,hMemDC,0,0,SRCCOPY);
237 DeleteDC(hDC);