Changeset 1781 for trunk/src/user32/uitools.cpp
- Timestamp:
- Nov 19, 1999, 6:59:35 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/uitools.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/uitools.cpp
r1667 r1781 1 /* $Id: uitools.cpp,v 1.1 6 1999-11-09 17:07:23cbratschi Exp $ */1 /* $Id: uitools.cpp,v 1.17 1999-11-19 17:59:35 cbratschi Exp $ */ 2 2 /* 3 3 * User Interface Functions … … 1902 1902 //****************************************************************************** 1903 1903 //****************************************************************************** 1904 int WIN32API DrawTextW( HDC arg1, LPCWSTR arg2, int arg3, PRECT arg4, UINT arg5)1905 { 1906 char *astring = UnicodeToAsciiString((LPWSTR) arg2);1904 int WIN32API DrawTextW( HDC hDC, LPCWSTR lpString, int nCount, PRECT lpRect, UINT nFormat) 1905 { 1906 char *astring = UnicodeToAsciiString((LPWSTR)lpString); 1907 1907 int rc; 1908 1908 … … 1910 1910 WriteLog("USER32: DrawTextW %s\n", astring); 1911 1911 #endif 1912 rc = O32_DrawText( arg1, astring, arg3, arg4, arg5);1912 rc = O32_DrawText(hDC,astring,nCount,lpRect,nFormat); 1913 1913 FreeAsciiString(astring); 1914 1914 return(rc); … … 1916 1916 //****************************************************************************** 1917 1917 //****************************************************************************** 1918 int WIN32API DrawTextA(HDC arg1, LPCSTR arg2, int arg3, PRECT arg4, UINT arg5)1918 int WIN32API DrawTextA(HDC hDC, LPCSTR lpString, int nCount, PRECT lpRect, UINT nFormat) 1919 1919 { 1920 1920 #ifdef DEBUG 1921 WriteLog("USER32: DrawTextA %s ", arg2);1921 WriteLog("USER32: DrawTextA %s %d", lpString,nCount); 1922 1922 #endif 1923 return O32_DrawText( arg1, arg2, arg3, arg4, arg5);1923 return O32_DrawText(hDC,lpString,nCount,lpRect,nFormat); 1924 1924 } 1925 1925 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.
