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
0aa36a83
Commit
0aa36a83
authored
Jul 10, 2023
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Always use result returned directly from call_window_proc.
parent
2d7465eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
message.c
dlls/win32u/message.c
+0
-6
No files found.
dlls/win32u/message.c
View file @
0aa36a83
...
...
@@ -54,7 +54,6 @@ struct received_message_info
UINT
type
;
MSG
msg
;
UINT
flags
;
/* InSendMessageEx return flags */
LRESULT
result
;
struct
received_message_info
*
prev
;
};
...
...
@@ -1258,7 +1257,6 @@ static BOOL reply_winproc_result( LRESULT result, HWND hwnd, UINT message, WPARA
if
(
info
->
type
==
MSG_CLIENT_MESSAGE
)
{
copy_reply
(
result
,
hwnd
,
message
,
info
->
msg
.
wParam
,
info
->
msg
.
lParam
,
wparam
,
lparam
);
info
->
result
=
result
;
return
TRUE
;
}
...
...
@@ -2879,16 +2877,12 @@ static BOOL process_packed_message( struct send_message_info *info, LRESULT *res
receive_info
.
msg
.
lParam
=
info
->
lparam
;
receive_info
.
flags
=
0
;
receive_info
.
prev
=
thread_info
->
receive_info
;
receive_info
.
result
=
0
;
thread_info
->
receive_info
=
&
receive_info
;
*
res_ptr
=
call_window_proc
(
info
->
hwnd
,
info
->
msg
,
info
->
wparam
,
info
->
lparam
,
!
ansi
,
TRUE
,
info
->
wm_char
,
TRUE
,
buffer
,
buffer_size
);
if
(
thread_info
->
receive_info
==
&
receive_info
)
{
thread_info
->
receive_info
=
receive_info
.
prev
;
*
res_ptr
=
receive_info
.
result
;
}
free
(
buffer
);
return
TRUE
;
}
...
...
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