- Timestamp:
- Dec 29, 2003, 11:55:49 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/text.cpp
r10349 r10363 1 /* $Id: text.cpp,v 1.3 5 2003-12-01 13:27:39 sandervl Exp $ */1 /* $Id: text.cpp,v 1.36 2003-12-29 10:55:49 sandervl Exp $ */ 2 2 3 3 /* … … 409 409 pDCData pHps = (pDCData)OSLibGpiQueryDCData((HPS)hdc); 410 410 411 dprintf(("GDI32: GetTextExtentPointW % ls", lpString));411 dprintf(("GDI32: GetTextExtentPointW %x %.*ls %d", hdc, cbString, lpString, cbString)); 412 412 if(pHps == NULL) 413 413 { … … 460 460 lstrcpynWtoA(astring, lpString, len + 1 ); 461 461 462 BOOL ret= OSLibGpiQueryTextBox(pHps, cbString, astring, TXTBOXOS_COUNT, pts);462 rc = OSLibGpiQueryTextBox(pHps, cbString, astring, TXTBOXOS_COUNT, pts); 463 463 free(astring); 464 464 … … 480 480 } 481 481 482 dprintf(("GDI32: GetTextExtentPointW %x % ls %d returned %d (%d,%d)", hdc, lpString, cbString, rc, lpSize->cx, lpSize->cy));482 dprintf(("GDI32: GetTextExtentPointW %x %.*ls %d returned %d (%d,%d)", hdc, cbString, lpString, cbString, rc, lpSize->cx, lpSize->cy)); 483 483 SetLastError(ERROR_SUCCESS); 484 484 return TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.