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
941ed629
Commit
941ed629
authored
Aug 20, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Input path can have trailing slash.
- Improve some debugging messages.
parent
3e80fb46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
13 deletions
+9
-13
mcicda.c
dlls/winmm/mcicda/mcicda.c
+9
-13
No files found.
dlls/winmm/mcicda/mcicda.c
View file @
941ed629
...
@@ -297,8 +297,9 @@ static DWORD MCICDA_Open(UINT wDevID, DWORD dwFlags, LPMCI_OPEN_PARMSA lpOpenPar
...
@@ -297,8 +297,9 @@ static DWORD MCICDA_Open(UINT wDevID, DWORD dwFlags, LPMCI_OPEN_PARMSA lpOpenPar
WARN
(
"MCI_OPEN_ELEMENT_ID %8lx ! Abort
\n
"
,
(
DWORD
)
lpOpenParms
->
lpstrElementName
);
WARN
(
"MCI_OPEN_ELEMENT_ID %8lx ! Abort
\n
"
,
(
DWORD
)
lpOpenParms
->
lpstrElementName
);
return
MCIERR_NO_ELEMENT_ALLOWED
;
return
MCIERR_NO_ELEMENT_ALLOWED
;
}
}
TRACE
(
"MCI_OPEN_ELEMENT element name: %s
\n
"
,
debugstr_a
(
lpOpenParms
->
lpstrElementName
));
if
(
!
isalpha
(
lpOpenParms
->
lpstrElementName
[
0
])
||
lpOpenParms
->
lpstrElementName
[
1
]
!=
':'
||
if
(
!
isalpha
(
lpOpenParms
->
lpstrElementName
[
0
])
||
lpOpenParms
->
lpstrElementName
[
1
]
!=
':'
||
lpOpenParms
->
lpstrElementName
[
2
]
)
(
lpOpenParms
->
lpstrElementName
[
2
]
&&
lpOpenParms
->
lpstrElementName
[
2
]
!=
'\\'
)
)
{
{
WARN
(
"MCI_OPEN_ELEMENT unsupported format: %s
\n
"
,
lpOpenParms
->
lpstrElementName
);
WARN
(
"MCI_OPEN_ELEMENT unsupported format: %s
\n
"
,
lpOpenParms
->
lpstrElementName
);
ret
=
MCIERR_NO_ELEMENT_ALLOWED
;
ret
=
MCIERR_NO_ELEMENT_ALLOWED
;
...
@@ -667,7 +668,7 @@ static DWORD MCICDA_Status(UINT wDevID, DWORD dwFlags, LPMCI_STATUS_PARMS lpParm
...
@@ -667,7 +668,7 @@ static DWORD MCICDA_Status(UINT wDevID, DWORD dwFlags, LPMCI_STATUS_PARMS lpParm
lpParms
->
dwReturn
=
(
toc
.
TrackData
[
lpParms
->
dwTrack
-
toc
.
FirstTrack
].
Control
&
0x04
)
?
lpParms
->
dwReturn
=
(
toc
.
TrackData
[
lpParms
->
dwTrack
-
toc
.
FirstTrack
].
Control
&
0x04
)
?
MCI_CDA_TRACK_OTHER
:
MCI_CDA_TRACK_AUDIO
;
MCI_CDA_TRACK_OTHER
:
MCI_CDA_TRACK_AUDIO
;
}
}
TRACE
(
"MCI_CDA_STATUS_TYPE_TRACK[%ld]=%
08lx
\n
"
,
lpParms
->
dwTrack
,
lpParms
->
dwReturn
);
TRACE
(
"MCI_CDA_STATUS_TYPE_TRACK[%ld]=%
ld
\n
"
,
lpParms
->
dwTrack
,
lpParms
->
dwReturn
);
break
;
break
;
default:
default:
FIXME
(
"unknown command %08lX !
\n
"
,
lpParms
->
dwItem
);
FIXME
(
"unknown command %08lX !
\n
"
,
lpParms
->
dwItem
);
...
@@ -1015,12 +1016,10 @@ LONG CALLBACK MCICDA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
...
@@ -1015,12 +1016,10 @@ LONG CALLBACK MCICDA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
case
MCI_PAUSE
:
return
MCICDA_Pause
(
dwDevID
,
dwParam1
,
(
LPMCI_GENERIC_PARMS
)
dwParam2
);
case
MCI_PAUSE
:
return
MCICDA_Pause
(
dwDevID
,
dwParam1
,
(
LPMCI_GENERIC_PARMS
)
dwParam2
);
case
MCI_RESUME
:
return
MCICDA_Resume
(
dwDevID
,
dwParam1
,
(
LPMCI_GENERIC_PARMS
)
dwParam2
);
case
MCI_RESUME
:
return
MCICDA_Resume
(
dwDevID
,
dwParam1
,
(
LPMCI_GENERIC_PARMS
)
dwParam2
);
case
MCI_SEEK
:
return
MCICDA_Seek
(
dwDevID
,
dwParam1
,
(
LPMCI_SEEK_PARMS
)
dwParam2
);
case
MCI_SEEK
:
return
MCICDA_Seek
(
dwDevID
,
dwParam1
,
(
LPMCI_SEEK_PARMS
)
dwParam2
);
/* FIXME: I wonder if those two next items are really called ? */
/* commands that should report an error as they are not supported in
case
MCI_SET_DOOR_OPEN
:
FIXME
(
"MCI_SET_DOOR_OPEN called. Please report this.
\n
"
);
* the native version */
return
MCICDA_SetDoor
(
dwDevID
,
TRUE
);
case
MCI_SET_DOOR_CLOSED
:
case
MCI_SET_DOOR_CLOSED
:
FIXME
(
"MCI_SET_DOOR_CLOSED called. Please report this.
\n
"
);
case
MCI_SET_DOOR_OPEN
:
return
MCICDA_SetDoor
(
dwDevID
,
FALSE
);
/* commands that should be supported */
case
MCI_LOAD
:
case
MCI_LOAD
:
case
MCI_SAVE
:
case
MCI_SAVE
:
case
MCI_FREEZE
:
case
MCI_FREEZE
:
...
@@ -1036,18 +1035,15 @@ LONG CALLBACK MCICDA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
...
@@ -1036,18 +1035,15 @@ LONG CALLBACK MCICDA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
case
MCI_CUT
:
case
MCI_CUT
:
case
MCI_DELETE
:
case
MCI_DELETE
:
case
MCI_PASTE
:
case
MCI_PASTE
:
FIXME
(
"Unsupported yet command [%lu]
\n
"
,
wMsg
);
break
;
/* commands that should report an error */
case
MCI_WINDOW
:
case
MCI_WINDOW
:
TRACE
(
"Unsupported command [
%lu
]
\n
"
,
wMsg
);
TRACE
(
"Unsupported command [
0x%lx
]
\n
"
,
wMsg
);
break
;
break
;
case
MCI_OPEN
:
case
MCI_OPEN
:
case
MCI_CLOSE
:
case
MCI_CLOSE
:
ERR
(
"Shouldn't receive a MCI_OPEN or CLOSE message
\n
"
);
ERR
(
"Shouldn't receive a MCI_OPEN or CLOSE message
\n
"
);
break
;
break
;
default:
default:
TRACE
(
"Sending msg [
%lu
] to default driver proc
\n
"
,
wMsg
);
TRACE
(
"Sending msg [
0x%lx
] to default driver proc
\n
"
,
wMsg
);
return
DefDriverProc
(
dwDevID
,
hDriv
,
wMsg
,
dwParam1
,
dwParam2
);
return
DefDriverProc
(
dwDevID
,
hDriv
,
wMsg
,
dwParam1
,
dwParam2
);
}
}
return
MCIERR_UNRECOGNIZED_COMMAND
;
return
MCIERR_UNRECOGNIZED_COMMAND
;
...
...
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