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
bf6f255c
Commit
bf6f255c
authored
Sep 16, 2023
by
Esme Povirk
Committed by
Alexandre Julliard
Sep 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Account for some messages from dual-monitor setups.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54031
parent
07f50ee6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
msg.c
dlls/user32/tests/msg.c
+8
-1
No files found.
dlls/user32/tests/msg.c
View file @
bf6f255c
...
...
@@ -19560,6 +19560,13 @@ static const struct message send_message_3[] = {
{
WM_USER
+
1
,
sent
|
wparam
|
lparam
,
0
,
0
},
{
0
}
};
static
const
struct
message
send_message_5
[]
=
{
{
WM_WINDOWPOSCHANGING
,
sent
|
wparam
|
lparam
|
optional
,
0
,
SWP_NOACTIVATE
|
SWP_NOZORDER
},
/* win7+ dual monitor */
{
WM_GETMINMAXINFO
,
sent
|
defwinproc
|
optional
},
/* win7+ dual monitor */
{
WM_WINDOWPOSCHANGING
,
sent
|
wparam
|
lparam
|
optional
,
0
,
SWP_NOACTIVATE
|
SWP_NOZORDER
},
/* win7+ dual monitor */
{
WM_GETMINMAXINFO
,
sent
|
defwinproc
|
optional
},
/* win7+ dual monitor */
{
0
}
};
static
DWORD
WINAPI
SendMessage_thread_1
(
void
*
param
)
{
...
...
@@ -19693,7 +19700,7 @@ static void test_SendMessage_other_thread(int thread_n)
while
(
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
))
{
ok
(
ignore_message
(
msg
.
message
),
"got unexpected message %04x from PeekMessageA
\n
"
,
msg
.
message
);
}
ok_sequence
(
WmEmptySeq
,
"SendMessage from other thread 5"
,
thread_n
==
2
);
ok_sequence
(
send_message_5
,
"SendMessage from other thread 5"
,
thread_n
==
2
);
ret
=
GetQueueStatus
(
QS_SENDMESSAGE
|
QS_POSTMESSAGE
);
ok
(
ret
==
0
,
"wrong status %08lx
\n
"
,
ret
);
...
...
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