Changeset 3726 for trunk/src/gdi32/blit.cpp
- Timestamp:
- Jun 17, 2000, 1:58:07 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/blit.cpp
r3705 r3726 1 /* $Id: blit.cpp,v 1.1 4 2000-06-14 13:17:49sandervl Exp $ */1 /* $Id: blit.cpp,v 1.15 2000-06-17 11:58:07 sandervl Exp $ */ 2 2 3 3 /* … … 38 38 dprintf(("GDI32: StretchBlt Src : %x (%d, %d) size (%d, %d)\n", 39 39 hdcSrc, nXOriginSrc, nYOriginSrc, nWidthSrc, nHeightSrc)); 40 SetLastError( 0);40 SetLastError(ERROR_SUCCESS); 41 41 if(DIBSection::getSection() != NULL) 42 42 { … … 59 59 BOOL rc; 60 60 61 SetLastError( 0);61 SetLastError(ERROR_SUCCESS); 62 62 if(DIBSection::getSection() != NULL) { 63 63 DIBSection *dsect = DIBSection::findHDC(hdcSrc); … … 81 81 WORD *newbits = 0; 82 82 83 SetLastError( 0);83 SetLastError(ERROR_SUCCESS); 84 84 if(info == NULL) { 85 85 goto invalid_parameter; … … 212 212 //****************************************************************************** 213 213 BOOL WIN32API PlgBlt(HDC hdcDest, CONST POINT *lpPoint, HDC hdcSrc, int nXSrc, 214 215 214 int nYSrc, int nWidth, int nHeight, HBITMAP hbmMask, 215 int xMast, int yMask) 216 216 { 217 217 dprintf(("GDI32: PlgBlt, not implemented\n"));
Note:
See TracChangeset
for help on using the changeset viewer.