Changeset 5799 for trunk/src/gdi32/text.cpp
- Timestamp:
- May 25, 2001, 12:05:29 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/text.cpp
r5795 r5799 1 /* $Id: text.cpp,v 1.2 1 2001-05-24 19:26:31sandervl Exp $ */1 /* $Id: text.cpp,v 1.22 2001-05-25 10:05:29 sandervl Exp $ */ 2 2 3 3 /* … … 874 874 // in the Settings dialog box of VirtualPC. Strings are clipped. 875 875 // (e.g.: Hard Disk 1 -> Hard Disk) 876 return O32_GetTextExtentPoint(hdc, lpsz, cbString, lpsSize); 876 dprintf(("GDI32: GetTextExtentPointA %s\n", lpsz)); 877 BOOL rc = O32_GetTextExtentPoint(hdc, lpsz, cbString, lpsSize); 878 if(rc) { 879 dprintf(("GDI32: GetTextExtentPointA %x %s %d returned %d (%d,%d)", hdc, lpsz, cbString, rc, lpsSize->cx, lpsSize->cy)); 880 SetLastError(ERROR_SUCCESS); 881 return TRUE; 882 } 883 return FALSE; 877 884 #else 878 885 BOOL rc;
Note:
See TracChangeset
for help on using the changeset viewer.