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
b0afca57
Commit
b0afca57
authored
Nov 13, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests/msg: Don't mess up lParam as it is passed on to DefWindowProcA().
parent
3634dc1b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
msg.c
dlls/user32/tests/msg.c
+4
-2
No files found.
dlls/user32/tests/msg.c
View file @
b0afca57
...
...
@@ -6246,12 +6246,14 @@ static LRESULT WINAPI ParentMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam
static
long
beginpaint_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
LPARAM
logged_lParam
;
trace
(
"parent: %p, %04x, %08lx, %08lx
\n
"
,
hwnd
,
message
,
wParam
,
lParam
);
/* explicitly ignore WM_GETICON message */
if
(
message
==
WM_GETICON
)
return
0
;
logged_lParam
=
lParam
;
if
(
log_all_parent_messages
||
message
==
WM_PARENTNOTIFY
||
message
==
WM_CANCELMODE
||
message
==
WM_SETFOCUS
||
message
==
WM_KILLFOCUS
||
...
...
@@ -6313,7 +6315,7 @@ static LRESULT WINAPI ParentMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam
di
.
u
.
item
.
action
=
dis
->
itemAction
;
di
.
u
.
item
.
state
=
dis
->
itemState
;
lParam
=
di
.
u
.
lp
;
l
ogged_l
Param
=
di
.
u
.
lp
;
break
;
}
}
...
...
@@ -6323,7 +6325,7 @@ static LRESULT WINAPI ParentMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam
if
(
defwndproc_counter
)
msg
.
flags
|=
defwinproc
;
if
(
beginpaint_counter
)
msg
.
flags
|=
beginpaint
;
msg
.
wParam
=
wParam
;
msg
.
lParam
=
lParam
;
msg
.
lParam
=
l
ogged_l
Param
;
add_message
(
&
msg
);
}
...
...
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