Changeset 2560 for trunk/src/user32/text.cpp
- Timestamp:
- Jan 29, 2000, 3:23:33 PM (26 years ago)
- 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:46sandervl Exp $ */1 /* $Id: text.cpp,v 1.6 2000-01-29 14:23:33 sandervl Exp $ */ 2 2 3 3 /* … … 48 48 INT WIN32API DrawTextA(HDC hDC,LPCSTR lpString,INT nCount,PRECT lpRect,UINT nFormat) 49 49 { 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 } 52 57 return InternalDrawTextExA(hDC,lpString,nCount,lpRect,nFormat,NULL,FALSE); 53 58 } … … 64 69 INT WIN32API DrawTextExA(HDC hdc,LPCSTR lpchText,INT cchText,LPRECT lprc,UINT dwDTFormat,LPDRAWTEXTPARAMS lpDTParams) 65 70 { 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)); 67 72 68 73 return InternalDrawTextExA(hdc,lpchText,cchText,lprc,dwDTFormat,lpDTParams,TRUE);
Note:
See TracChangeset
for help on using the changeset viewer.