Ignore:
Timestamp:
Jan 29, 2000, 3:23:33 PM (26 years ago)
Author:
sandervl
Message:

Call DrawTextA in uitools.cpp, not Open32's DrawText.

File:
1 edited

Legend:

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

    r2469 r2560  
    1 /* $Id: text.cpp,v 1.5 2000-01-18 20:10:46 sandervl Exp $ */
     1/* $Id: text.cpp,v 1.6 2000-01-29 14:23:33 sandervl Exp $ */
    22
    33/*
     
    4848INT WIN32API DrawTextA(HDC hDC,LPCSTR lpString,INT nCount,PRECT lpRect,UINT nFormat)
    4949{
    50   dprintf(("USER32: DrawTextA %x",hDC));
    51 
     50 int bla;
     51
     52  dprintf(("USER32: DrawTextA %x %s %d (%d,%d)(%d,%d) %x",hDC, lpString, nCount, lpRect->left, lpRect->top, lpRect->right, lpRect->bottom, nFormat));
     53
     54  if(nFormat == 0x828) {
     55        bla = 1;
     56  }
    5257  return InternalDrawTextExA(hDC,lpString,nCount,lpRect,nFormat,NULL,FALSE);
    5358}
     
    6469INT WIN32API DrawTextExA(HDC hdc,LPCSTR lpchText,INT cchText,LPRECT lprc,UINT dwDTFormat,LPDRAWTEXTPARAMS lpDTParams)
    6570{
    66   dprintf(("USER32:DrawTextExA %x\n",hdc));
     71  dprintf(("USER32: DrawTextExA %x %s %d (%d,%d)(%d,%d) %x",hdc, lpchText, cchText, lprc->left, lprc->top, lprc->right, lprc->bottom, dwDTFormat));
    6772
    6873  return InternalDrawTextExA(hdc,lpchText,cchText,lprc,dwDTFormat,lpDTParams,TRUE);
Note: See TracChangeset for help on using the changeset viewer.