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
e76cf04a
Commit
e76cf04a
authored
Sep 22, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 22, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always initialize send_message_info.flags.
parent
93606602
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
message.c
dlls/user/message.c
+4
-0
No files found.
dlls/user/message.c
View file @
e76cf04a
...
...
@@ -2028,6 +2028,7 @@ BOOL WINAPI SendNotifyMessageW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lpara
info
.
msg
=
msg
;
info
.
wparam
=
wparam
;
info
.
lparam
=
lparam
;
info
.
flags
=
0
;
if
(
is_broadcast
(
hwnd
))
{
...
...
@@ -2082,6 +2083,7 @@ BOOL WINAPI SendMessageCallbackW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lpa
info
.
lparam
=
lparam
;
info
.
callback
=
callback
;
info
.
data
=
data
;
info
.
flags
=
0
;
if
(
is_broadcast
(
hwnd
))
{
...
...
@@ -2171,6 +2173,7 @@ BOOL WINAPI PostMessageW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
info
.
msg
=
msg
;
info
.
wparam
=
wparam
;
info
.
lparam
=
lparam
;
info
.
flags
=
0
;
if
(
is_broadcast
(
hwnd
))
{
...
...
@@ -2216,6 +2219,7 @@ BOOL WINAPI PostThreadMessageW( DWORD thread, UINT msg, WPARAM wparam, LPARAM lp
info
.
msg
=
msg
;
info
.
wparam
=
wparam
;
info
.
lparam
=
lparam
;
info
.
flags
=
0
;
return
put_message_in_queue
(
thread
,
&
info
,
NULL
);
}
...
...
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