Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7c7fa105
Commit
7c7fa105
authored
Sep 24, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Avoid using CONST.
parent
1c23b501
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
dde_misc.c
dlls/user32/dde_misc.c
+1
-1
message.c
dlls/user32/message.c
+2
-2
resource.c
dlls/user32/tests/resource.c
+1
-1
winproc.c
dlls/user32/winproc.c
+1
-1
No files found.
dlls/user32/dde_misc.c
View file @
7c7fa105
...
...
@@ -241,7 +241,7 @@ BOOL WINAPI ImpersonateDdeClientWindow(HWND hWndClient, HWND hWndServer)
* DdeSetQualityOfService (USER32.@)
*/
BOOL
WINAPI
DdeSetQualityOfService
(
HWND
hwndClient
,
CONST
SECURITY_QUALITY_OF_SERVICE
*
pqosNew
,
BOOL
WINAPI
DdeSetQualityOfService
(
HWND
hwndClient
,
const
SECURITY_QUALITY_OF_SERVICE
*
pqosNew
,
PSECURITY_QUALITY_OF_SERVICE
pqosPrev
)
{
FIXME
(
"(%p %p %p): stub
\n
"
,
hwndClient
,
pqosNew
,
pqosPrev
);
...
...
dlls/user32/message.c
View file @
7c7fa105
...
...
@@ -4080,7 +4080,7 @@ BOOL WINAPI WaitMessage(void)
/***********************************************************************
* MsgWaitForMultipleObjectsEx (USER32.@)
*/
DWORD
WINAPI
MsgWaitForMultipleObjectsEx
(
DWORD
count
,
CONST
HANDLE
*
pHandles
,
DWORD
WINAPI
MsgWaitForMultipleObjectsEx
(
DWORD
count
,
const
HANDLE
*
pHandles
,
DWORD
timeout
,
DWORD
mask
,
DWORD
flags
)
{
HANDLE
handles
[
MAXIMUM_WAIT_OBJECTS
];
...
...
@@ -4114,7 +4114,7 @@ DWORD WINAPI MsgWaitForMultipleObjectsEx( DWORD count, CONST HANDLE *pHandles,
/***********************************************************************
* MsgWaitForMultipleObjects (USER32.@)
*/
DWORD
WINAPI
MsgWaitForMultipleObjects
(
DWORD
count
,
CONST
HANDLE
*
handles
,
DWORD
WINAPI
MsgWaitForMultipleObjects
(
DWORD
count
,
const
HANDLE
*
handles
,
BOOL
wait_all
,
DWORD
timeout
,
DWORD
mask
)
{
return
MsgWaitForMultipleObjectsEx
(
count
,
handles
,
timeout
,
mask
,
...
...
dlls/user32/tests/resource.c
View file @
7c7fa105
...
...
@@ -331,7 +331,7 @@ static void test_accel2(void)
}
static
void
test_PrivateExtractIcons
(
void
)
{
CONST
CHAR
szShell32Dll
[]
=
"shell32.dll"
;
const
CHAR
szShell32Dll
[]
=
"shell32.dll"
;
HICON
ahIcon
[
256
];
UINT
aIconId
[
256
];
UINT
cIcons
,
cIcons2
;
...
...
dlls/user32/winproc.c
View file @
7c7fa105
...
...
@@ -1122,7 +1122,7 @@ static LRESULT WINAPI StaticWndProcW( HWND hwnd, UINT msg, WPARAM wParam, LPARAM
return
wow_handlers
.
static_proc
(
hwnd
,
msg
,
wParam
,
lParam
,
TRUE
);
}
static
DWORD
wait_message
(
DWORD
count
,
CONST
HANDLE
*
handles
,
DWORD
timeout
,
DWORD
mask
,
DWORD
flags
)
static
DWORD
wait_message
(
DWORD
count
,
const
HANDLE
*
handles
,
DWORD
timeout
,
DWORD
mask
,
DWORD
flags
)
{
DWORD
ret
=
USER_Driver
->
pMsgWaitForMultipleObjectsEx
(
count
,
handles
,
timeout
,
mask
,
flags
);
if
(
ret
==
WAIT_TIMEOUT
&&
!
count
&&
!
timeout
)
NtYieldExecution
();
...
...
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