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
d48d923d
Commit
d48d923d
authored
Oct 13, 2009
by
Jörg Höhle
Committed by
Alexandre Julliard
Oct 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: MCI notification is controlled by keyword only.
parent
bac64865
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
mci.c
dlls/winmm/mci.c
+5
-6
No files found.
dlls/winmm/mci.c
View file @
d48d923d
...
...
@@ -1433,12 +1433,6 @@ DWORD WINAPI mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrRet,
goto
errCleanUp
;
}
/* set up call back */
if
(
hwndCallback
!=
0
)
{
dwFlags
|=
MCI_NOTIFY
;
data
[
0
]
=
(
DWORD
)
hwndCallback
;
}
/* set return information */
switch
(
retType
=
MCI_GetReturnType
(
lpCmd
))
{
case
0
:
offset
=
1
;
break
;
...
...
@@ -1454,6 +1448,11 @@ DWORD WINAPI mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrRet,
if
((
dwRet
=
MCI_ParseOptArgs
(
data
,
offset
,
lpCmd
,
args
,
&
dwFlags
)))
goto
errCleanUp
;
/* set up call back */
if
(
dwFlags
&
MCI_NOTIFY
)
{
data
[
0
]
=
(
DWORD
)
hwndCallback
;
}
/* FIXME: the command should get it's own notification window set up and
* ask for device closing while processing the notification mechanism
*/
...
...
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