Changeset 3726 for trunk/src


Ignore:
Timestamp:
Jun 17, 2000, 1:58:07 PM (25 years ago)
Author:
sandervl
Message:

minor update

Location:
trunk/src/gdi32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/blit.cpp

    r3705 r3726  
    1 /* $Id: blit.cpp,v 1.14 2000-06-14 13:17:49 sandervl Exp $ */
     1/* $Id: blit.cpp,v 1.15 2000-06-17 11:58:07 sandervl Exp $ */
    22
    33/*
     
    3838  dprintf(("GDI32: StretchBlt Src : %x (%d, %d) size (%d, %d)\n",
    3939           hdcSrc, nXOriginSrc, nYOriginSrc, nWidthSrc, nHeightSrc));
    40   SetLastError(0);
     40  SetLastError(ERROR_SUCCESS);
    4141  if(DIBSection::getSection() != NULL)
    4242  {
     
    5959 BOOL rc;
    6060
    61     SetLastError(0);
     61    SetLastError(ERROR_SUCCESS);
    6262    if(DIBSection::getSection() != NULL) {
    6363        DIBSection *dsect = DIBSection::findHDC(hdcSrc);
     
    8181    WORD *newbits = 0;
    8282
    83     SetLastError(0);
     83    SetLastError(ERROR_SUCCESS);
    8484    if(info == NULL) {
    8585        goto invalid_parameter;
     
    212212//******************************************************************************
    213213BOOL WIN32API PlgBlt(HDC hdcDest, CONST POINT *lpPoint, HDC hdcSrc, int nXSrc,
    214                         int nYSrc, int nWidth, int nHeight, HBITMAP hbmMask,
    215                         int xMast, int yMask)
     214                     int nYSrc, int nWidth, int nHeight, HBITMAP hbmMask,
     215                     int xMast, int yMask)
    216216{
    217217  dprintf(("GDI32: PlgBlt, not implemented\n"));
  • trunk/src/gdi32/dibsect.cpp

    r3711 r3726  
    1 /* $Id: dibsect.cpp,v 1.34 2000-06-14 18:30:15 sandervl Exp $ */
     1/* $Id: dibsect.cpp,v 1.35 2000-06-17 11:58:07 sandervl Exp $ */
    22
    33/*
     
    518518        //restore old y inversion height
    519519        if(fRestoryYInversion) GpiEnableYInversion(hps, oldyinversion);
     520        SetLastError(ERROR_SUCCESS_W);
    520521        return(TRUE);
    521522  }
Note: See TracChangeset for help on using the changeset viewer.