- Timestamp:
- Jun 17, 2000, 1:58:07 PM (25 years ago)
- Location:
- trunk/src/gdi32
- Files:
-
- 2 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")); -
trunk/src/gdi32/dibsect.cpp
r3711 r3726 1 /* $Id: dibsect.cpp,v 1.3 4 2000-06-14 18:30:15sandervl Exp $ */1 /* $Id: dibsect.cpp,v 1.35 2000-06-17 11:58:07 sandervl Exp $ */ 2 2 3 3 /* … … 518 518 //restore old y inversion height 519 519 if(fRestoryYInversion) GpiEnableYInversion(hps, oldyinversion); 520 SetLastError(ERROR_SUCCESS_W); 520 521 return(TRUE); 521 522 }
Note:
See TracChangeset
for help on using the changeset viewer.