Michael Stefaniuc : shell32: Avoid using CONST.

Alexandre Julliard julliard at winehq.org
Tue Sep 24 15:16:48 CDT 2013


Module: wine
Branch: master
Commit: 787bc8719a7a14f71a414b018b793cd7d7a56a6a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=787bc8719a7a14f71a414b018b793cd7d7a56a6a

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Sep 24 12:28:44 2013 +0200

shell32: Avoid using CONST.

---

 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




More information about the wine-cvs mailing list