[ros-diffs] [cwittich] 30899: remove the const from the DrawShadowText function to be compatible to PSDK

cwittich at svn.reactos.org cwittich at svn.reactos.org
Thu Nov 29 17:04:38 CET 2007


Author: cwittich
Date: Thu Nov 29 19:04:38 2007
New Revision: 30899

URL: http://svn.reactos.org/svn/reactos?rev=30899&view=rev
Log:
remove the const from the DrawShadowText function to be compatible to PSDK

Modified:
    trunk/reactos/dll/win32/comctl32/comctl32_ros.diff
    trunk/reactos/dll/win32/comctl32/commctrl.c
    trunk/reactos/include/psdk/commctrl.h

Modified: trunk/reactos/dll/win32/comctl32/comctl32_ros.diff
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/comctl32/comctl32_ros.diff?rev=30899&r1=30898&r2=30899&view=diff
==============================================================================
--- trunk/reactos/dll/win32/comctl32/comctl32_ros.diff (original)
+++ trunk/reactos/dll/win32/comctl32/comctl32_ros.diff Thu Nov 29 19:04:38 2007
@@ -1,16 +1,3 @@
-Index: commctrl.c
-===================================================================
---- commctrl.c	(revision 23123)
-+++ commctrl.c	(working copy)
-@@ -1620,7 +1620,7 @@
-  *
-  * Draw text with shadow.
-  */
-+int WINAPI DrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, const RECT *rect, DWORD dwFlags,
--int WINAPI DrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, RECT *rect, DWORD dwFlags,
-                           COLORREF crText, COLORREF crShadow, int ixOffset, int iyOffset)
- {
-     FIXME("(%p, %s, %d, %p, %d, 0x%08x, 0x%08x, %d, %d): stub\n", hdc, debugstr_w(pszText), cch, rect, dwFlags,
 Index: listview.c
 ===================================================================
 --- listview.c	(revision 23123)

Modified: trunk/reactos/dll/win32/comctl32/commctrl.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/comctl32/commctrl.c?rev=30899&r1=30898&r2=30899&view=diff
==============================================================================
--- trunk/reactos/dll/win32/comctl32/commctrl.c (original)
+++ trunk/reactos/dll/win32/comctl32/commctrl.c Thu Nov 29 19:04:38 2007
@@ -1620,7 +1620,7 @@
  *
  * Draw text with shadow.
  */
-int WINAPI DrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, const RECT *rect, DWORD dwFlags,
+int WINAPI DrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, RECT *rect, DWORD dwFlags,
                           COLORREF crText, COLORREF crShadow, int ixOffset, int iyOffset)
 {
     FIXME("(%p, %s, %d, %p, %d, 0x%08x, 0x%08x, %d, %d): stub\n", hdc, debugstr_w(pszText), cch, rect, dwFlags,

Modified: trunk/reactos/include/psdk/commctrl.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/commctrl.h?rev=30899&r1=30898&r2=30899&view=diff
==============================================================================
--- trunk/reactos/include/psdk/commctrl.h (original)
+++ trunk/reactos/include/psdk/commctrl.h Thu Nov 29 19:04:38 2007
@@ -715,7 +715,7 @@
 BOOL WINAPI RemoveWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR);
 LRESULT WINAPI DefSubclassProc(HWND, UINT, WPARAM, LPARAM);
 
-int WINAPI DrawShadowText(HDC, LPCWSTR, UINT, const RECT*, DWORD, COLORREF, COLORREF, int, int);
+int WINAPI DrawShadowText(HDC, LPCWSTR, UINT, RECT*, DWORD, COLORREF, COLORREF, int, int);
 
 /* Header control */
 




More information about the Ros-diffs mailing list