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
8f5ec326
Commit
8f5ec326
authored
Jun 14, 2010
by
Jörg Höhle
Committed by
Alexandre Julliard
Jun 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmsystem: Log MCI command name again.
parent
fd421c34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mci16.c
dlls/mmsystem.dll16/mci16.c
+3
-3
No files found.
dlls/mmsystem.dll16/mci16.c
View file @
8f5ec326
...
...
@@ -627,7 +627,7 @@ DWORD WINAPI mciSendCommand16(UINT16 wDevID, UINT16 wMsg, DWORD dwParam1, DWORD
BOOL
to32
;
DWORD_PTR
dwParam2
=
p2
;
TRACE
(
"(%04X, %
u, %08X, %08lX)
\n
"
,
wDevID
,
wMsg
,
dwParam1
,
dwParam2
);
TRACE
(
"(%04X, %
s, %08X, %08lX)
\n
"
,
wDevID
,
MCI_MessageToString
(
wMsg
)
,
dwParam1
,
dwParam2
);
switch
(
wMsg
)
{
case
MCI_CLOSE
:
...
...
@@ -651,11 +651,11 @@ DWORD WINAPI mciSendCommand16(UINT16 wDevID, UINT16 wMsg, DWORD dwParam1, DWORD
switch
(
res
=
MCI_MapMsg16To32W
(
wMsg
,
dwParam1
,
&
dwParam2
))
{
case
MMSYSTEM_MAP_MSGERROR
:
TRACE
(
"
Not handled yet (%u)
\n
"
,
wMsg
);
TRACE
(
"
%s not handled yet
\n
"
,
MCI_MessageToString
(
wMsg
)
);
dwRet
=
MCIERR_DRIVER_INTERNAL
;
break
;
case
MMSYSTEM_MAP_NOMEM
:
TRACE
(
"Problem mapping
msg=%u from 16 to 32a
\n
"
,
wMsg
);
TRACE
(
"Problem mapping
%s from 16 to 32a
\n
"
,
MCI_MessageToString
(
wMsg
)
);
dwRet
=
MCIERR_OUT_OF_MEMORY
;
break
;
case
MMSYSTEM_MAP_OK
:
...
...
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