Ignore:
Timestamp:
Oct 26, 2000, 7:20:29 PM (25 years ago)
Author:
sandervl
Message:

GetObjectA/W fixes

File:
1 edited

Legend:

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

    r4356 r4533  
    1 /* $Id: blit.cpp,v 1.19 2000-10-01 21:21:15 phaller Exp $ */
     1/* $Id: blit.cpp,v 1.20 2000-10-26 17:20:28 sandervl Exp $ */
    22
    33/*
     
    8585    }
    8686  }
    87   dprintf(("GDI32: BitBlt to hdc %X from (%d,%d) to (%d,%d), (%d,%d) rop %X\n",
    88            hdcDest, nXSrc, nYSrc, nXDest, nYDest, nWidth, nHeight, dwRop));
     87  dprintf(("GDI32: BitBlt to hdc %X from hdc %x (%d,%d) to (%d,%d), (%d,%d) rop %X\n",
     88           hdcDest, hdcSrc, nXSrc, nYSrc, nXDest, nYDest, nWidth, nHeight, dwRop));
    8989  return O32_BitBlt(hdcDest, nXDest, nYDest, nWidth, nHeight, hdcSrc, nXSrc, nYSrc, dwRop);
    9090}
     
    100100    ULONG compression = 0, iHeight, bmpsize;
    101101    WORD *newbits = 0;
     102
     103    dprintf(("GDI32: SetDIBitsToDevice hdc:%X xDest:%d yDest:%d, cx:%d, cy:%d, xSrc:%d, ySrc:%d, startscan:%d, lines:%d \nGDI32: bits 0x%X, info 0x%X, coloruse %d",
     104              hdc, xDest, yDest, cx, cy, xSrc, ySrc, startscan, lines, (LPVOID) bits, (PBITMAPINFO)info, coloruse));
    102105
    103106    SetLastError(ERROR_SUCCESS);
Note: See TracChangeset for help on using the changeset viewer.