shell32: Avoid using CONST.
This commit is contained in:
parent
5fd4f943dc
commit
787bc8719a
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue