Changeset 3481 for trunk/src/gdi32/text.cpp
- Timestamp:
- May 2, 2000, 10:49:58 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/text.cpp
r2802 r3481 1 /* $Id: text.cpp,v 1. 8 2000-02-16 14:18:12sandervl Exp $ */1 /* $Id: text.cpp,v 1.9 2000-05-02 20:49:58 sandervl Exp $ */ 2 2 3 3 /* … … 691 691 BOOL WIN32API ExtTextOutA(HDC hdc,int X,int Y,UINT fuOptions,CONST RECT *lprc,LPCSTR lpszString,UINT cbCount,CONST INT *lpDx) 692 692 { 693 dprintf(("GDI32: ExtTextOutA \n"));693 dprintf(("GDI32: ExtTextOutA %x %s", hdc, lpszString)); 694 694 695 695 return InternalTextOutA(hdc,X,Y,fuOptions,lprc,lpszString,cbCount,lpDx,TRUE); … … 707 707 BOOL WIN32API TextOutA(HDC hdc,int nXStart,int nYStart,LPCSTR lpszString,int cbString) 708 708 { 709 dprintf(("GDI32: TextOutA "));709 dprintf(("GDI32: TextOutA %x %s", hdc, lpszString)); 710 710 711 711 return InternalTextOutA(hdc,nXStart,nYStart,0,NULL,lpszString,cbString,NULL,FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.