Ignore:
Timestamp:
May 24, 2001, 9:27:00 PM (24 years ago)
Author:
sandervl
Message:

minor logging updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/text.cpp

    r4825 r5796  
    1 /* $Id: text.cpp,v 1.10 2000-12-17 15:04:11 sandervl Exp $ */
     1/* $Id: text.cpp,v 1.11 2001-05-24 19:26:59 sandervl Exp $ */
    22
    33/*
     
    3030INT WIN32API DrawTextW(HDC hDC,LPCWSTR lpString,INT nCount,PRECT lpRect,UINT nFormat)
    3131{
    32   dprintf(("USER32: DrawTextW %x",hDC));
     32  dprintf(("USER32: DrawTextA %x %ls %d (%d,%d)(%d,%d) %x",hDC, lpString, nCount, lpRect->left, lpRect->top, lpRect->right, lpRect->bottom, nFormat));
    3333
    3434  return InternalDrawTextExW(hDC,lpString,nCount,lpRect,nFormat,NULL,FALSE);
     
    4646int WIN32API DrawTextExW(HDC hdc,LPWSTR lpchText,INT cchText,LPRECT lprc,UINT dwDTFormat,LPDRAWTEXTPARAMS lpDTParams)
    4747{
    48   dprintf(("USER32: DrawTextExW %x",hdc));
     48  dprintf(("USER32: DrawTextExA %x %ls %d (%d,%d)(%d,%d) %x",hdc, lpchText, cchText, lprc->left, lprc->top, lprc->right, lprc->bottom, dwDTFormat));
    4949
    5050  return InternalDrawTextExW(hdc,lpchText,cchText,lprc,dwDTFormat,lpDTParams,TRUE);
Note: See TracChangeset for help on using the changeset viewer.