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
c697cc3d
Commit
c697cc3d
authored
Nov 14, 1999
by
Uwe Bonnes
Committed by
Alexandre Julliard
Nov 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore MCI_OPEN_ELEMENT in CDAUDIO_mciOpen.
parent
1077d0cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
mcicda.c
dlls/winmm/mcicda/mcicda.c
+7
-2
No files found.
dlls/winmm/mcicda/mcicda.c
View file @
c697cc3d
...
...
@@ -228,8 +228,13 @@ static DWORD CDAUDIO_mciOpen(UINT wDevID, DWORD dwFlags, LPMCI_OPEN_PARMSA lpOpe
wmcda
->
fShareable
=
dwFlags
&
MCI_OPEN_SHAREABLE
;
}
if
(
dwFlags
&
MCI_OPEN_ELEMENT
)
{
TRACE
(
"MCI_OPEN_ELEMENT !
\n
"
);
return
MCIERR_NO_ELEMENT_ALLOWED
;
if
(
dwFlags
&
MCI_OPEN_ELEMENT_ID
)
{
WARN
(
"MCI_OPEN_ELEMENT_ID %8lx ! Abort"
,
(
DWORD
)
lpOpenParms
->
lpstrElementName
);
return
MCIERR_NO_ELEMENT_ALLOWED
;
}
WARN
(
"MCI_OPEN_ELEMENT %s ignored
\n
"
,
lpOpenParms
->
lpstrElementName
);
/*return MCIERR_NO_ELEMENT_ALLOWED;
bon 19991106 allows cdplayer.exe to run*/
}
wmcda
->
wNotifyDeviceID
=
dwDeviceID
;
...
...
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