Home | History | Annotate | Download | only in coders

Lines Matching refs:hDC

128     HDC
130 hDC;
162 hDC=CreateDC(device.DeviceName,device.DeviceName,NULL,NULL);
163 if (hDC == (HDC) NULL)
167 screen->columns=(size_t) GetDeviceCaps(hDC,HORZRES);
168 screen->rows=(size_t) GetDeviceCaps(hDC,VERTRES);
178 bitmapDC=CreateCompatibleDC(hDC);
179 if (bitmapDC == (HDC) NULL)
181 DeleteDC(hDC);
191 bitmap=CreateDIBSection(hDC,&bmi,DIB_RGB_COLORS,(void **) &p,NULL,0);
194 DeleteDC(hDC);
201 DeleteDC(hDC);
206 BitBlt(bitmapDC,0,0,(int) screen->columns,(int) screen->rows,hDC,0,0,
228 DeleteDC(hDC);