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
8e27f6c2
Commit
8e27f6c2
authored
Jul 31, 2022
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Aug 10, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciqtz32: Show the default video window when switching from another one.
Signed-off-by:
Akihiro Sagawa
<
sagawa.aki@gmail.com
>
parent
6f7c0c76
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
mciqtz.c
dlls/mciqtz32/mciqtz.c
+2
-0
mci.c
dlls/winmm/tests/mci.c
+1
-1
No files found.
dlls/mciqtz32/mciqtz.c
View file @
8e27f6c2
...
...
@@ -1010,6 +1010,8 @@ static DWORD MCIQTZ_mciWindow(UINT wDevID, DWORD dwFlags, LPMCI_DGV_WINDOW_PARMS
if
(
wma
->
parent
==
wma
->
window
)
ShowWindow
(
wma
->
window
,
SW_HIDE
);
else
if
(
hwnd
==
wma
->
window
)
ShowWindow
(
wma
->
window
,
SW_SHOW
);
wma
->
parent
=
hwnd
;
}
...
...
dlls/winmm/tests/mci.c
View file @
8e27f6c2
...
...
@@ -1695,7 +1695,7 @@ static void test_video_window(void)
err
=
mciSendCommandW
(
id
,
MCI_WINDOW
,
MCI_DGV_WINDOW_HWND
,
(
DWORD_PTR
)
&
parm
);
ok
(
!
err
,
"Got %s.
\n
"
,
dbg_mcierr
(
err
));
ok
(
IsWindowVisible
(
main_window
),
"Main window should be shown.
\n
"
);
todo_wine
ok
(
IsWindowVisible
(
video_window
),
"Video window should be shown.
\n
"
);
ok
(
IsWindowVisible
(
video_window
),
"Video window should be shown.
\n
"
);
err
=
mciSendCommandW
(
id
,
MCI_WHERE
,
MCI_DGV_WHERE_DESTINATION
,
(
DWORD_PTR
)
&
parm
);
ok
(
!
err
,
"Got %s.
\n
"
,
dbg_mcierr
(
err
));
...
...
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