Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
787bc871
Commit
787bc871
authored
Sep 24, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Avoid using CONST.
parent
5fd4f943
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
shellord.c
dlls/shell32/shellord.c
+2
-6
undocshell.h
dlls/shell32/undocshell.h
+2
-6
No files found.
dlls/shell32/shellord.c
View file @
787bc871
...
...
@@ -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
);
...
...
dlls/shell32/undocshell.h
View file @
787bc871
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment