shell32: Avoid using CONST.

Michael Stefaniuc mstefani at redhat.de
Tue Sep 24 05:28:44 CDT 2013


---
 dlls/shell32/shellord.c   | 8 ++------
 dlls/shell32/undocshell.h | 8 ++------
 2 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c
index 31891e4..8da849f 100644
--- a/dlls/shell32/shellord.c
+++ b/dlls/shell32/shellord.c
@@ -596,12 +596,8 @@ HRESULT WINAPI SHDoDragDrop(
  * ArrangeWindows				[SHELL32.184]
  *
  */
-WORD WINAPI ArrangeWindows(
-	HWND hwndParent,
-	DWORD dwReserved,
-	LPCRECT lpRect,
-	WORD cKids,
-	CONST HWND * lpKids)
+WORD WINAPI ArrangeWindows(HWND hwndParent, DWORD dwReserved, const RECT *lpRect,
+        WORD cKids, const HWND *lpKids)
 {
     FIXME("(%p 0x%08x %p 0x%04x %p):stub.\n",
 	   hwndParent, dwReserved, lpRect, cKids, lpKids);
diff --git a/dlls/shell32/undocshell.h b/dlls/shell32/undocshell.h
index fa0ac05..3f3372a 100644
--- a/dlls/shell32/undocshell.h
+++ b/dlls/shell32/undocshell.h
@@ -486,12 +486,8 @@ BOOL WINAPI SHWaitForFileToOpen(
 	DWORD dwFlags,
 	DWORD dwTimeout);
 
-WORD WINAPI ArrangeWindows(
-	HWND hwndParent,
-	DWORD dwReserved,
-	LPCRECT lpRect,
-	WORD cKids,
-	CONST HWND * lpKids);
+WORD WINAPI ArrangeWindows(HWND hwndParent, DWORD dwReserved, const RECT *lpRect,
+        WORD cKids, const HWND *lpKids);
 
 /* RegisterShellHook types */
 #define RSH_DEREGISTER        0
-- 
1.8.3.1



More information about the wine-patches mailing list