Changeset 3481 for trunk/src


Ignore:
Timestamp:
May 2, 2000, 10:49:58 PM (25 years ago)
Author:
sandervl
Message:

added extra logging

Location:
trunk/src/gdi32
Files:
2 edited

Legend:

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

    r2802 r3481  
    1 /* $Id: font.cpp,v 1.9 2000-02-16 14:18:09 sandervl Exp $ */
     1/* $Id: font.cpp,v 1.10 2000-05-02 20:49:58 sandervl Exp $ */
    22
    33/*
     
    225225  iFontRename(lplf->lfFaceName, afont.lfFaceName);
    226226
    227   dprintf(("lpszFace = %s -> %s\n", lplf->lfFaceName, afont.lfFaceName));
     227  dprintf(("lpszFace = (%x) %s -> %s\n", lplf->lfFaceName, lplf->lfFaceName, afont.lfFaceName));
    228228
    229229  dprintf(("GDI32: CreateFontIndirectA\n"));
     
    257257  memcpy(&afont, lplf, sizeof(LOGFONTA));
    258258  memset(afont.lfFaceName, 0, LF_FACESIZE);
     259  dprintf(("lpszFace = (%x)", lplf->lfFaceName));
     260
    259261  UnicodeToAsciiN((WCHAR *)lplf->lfFaceName, afont.lfFaceName, LF_FACESIZE-1);
    260262  hfont = CreateFontIndirectA(&afont);
  • trunk/src/gdi32/text.cpp

    r2802 r3481  
    1 /* $Id: text.cpp,v 1.8 2000-02-16 14:18:12 sandervl Exp $ */
     1/* $Id: text.cpp,v 1.9 2000-05-02 20:49:58 sandervl Exp $ */
    22
    33/*
     
    691691BOOL WIN32API ExtTextOutA(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCSTR lpszString,UINT cbCount,CONST INT *lpDx)
    692692{
    693   dprintf(("GDI32: ExtTextOutA\n"));
     693  dprintf(("GDI32: ExtTextOutA %x %s", hdc, lpszString));
    694694
    695695  return InternalTextOutA(hdc,X,Y,fuOptions,lprc,lpszString,cbCount,lpDx,TRUE);
     
    707707BOOL WIN32API TextOutA(HDC hdc,int nXStart,int nYStart,LPCSTR lpszString,int cbString)
    708708{
    709   dprintf(("GDI32: TextOutA"));
     709  dprintf(("GDI32: TextOutA %x %s", hdc, lpszString));
    710710
    711711  return InternalTextOutA(hdc,nXStart,nYStart,0,NULL,lpszString,cbString,NULL,FALSE);
Note: See TracChangeset for help on using the changeset viewer.