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
1fc362ce
Commit
1fc362ce
authored
Sep 20, 2012
by
Jörg Höhle
Committed by
Alexandre Julliard
Oct 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Turn some MCI parser ERR into FIXME.
parent
12caf31a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
mci.c
dlls/winmm/mci.c
+7
-5
No files found.
dlls/winmm/mci.c
View file @
1fc362ce
...
...
@@ -1099,7 +1099,7 @@ static DWORD MCI_ParseOptArgs(DWORD* data, int _offset, LPCWSTR lpCmd,
break
;
case
MCI_RETURN
:
if
(
offset
!=
_offset
)
{
ERR
(
"MCI_RETURN not in first position
\n
"
);
FIXME
(
"MCI_RETURN not in first position
\n
"
);
return
MCIERR_PARSER_INTERNAL
;
}
}
...
...
@@ -1186,7 +1186,7 @@ static DWORD MCI_ParseOptArgs(DWORD* data, int _offset, LPCWSTR lpCmd,
return
MCIERR_UNRECOGNIZED_COMMAND
;
}
if
(
offset
==
MCI_DATA_SIZE
)
{
ERR
(
"Internal data[] buffer overflow
\n
"
);
FIXME
(
"Internal data[] buffer overflow
\n
"
);
return
MCIERR_PARSER_INTERNAL
;
}
}
...
...
@@ -1304,7 +1304,7 @@ static DWORD MCI_HandleReturnValues(DWORD dwRet, LPWINE_MCIDRIVER wmd, DWORD ret
snprintfW
(
lpstrRet
,
uRetLen
,
fmt_d4
,
data
[
0
],
data
[
1
],
data
[
2
],
data
[
3
]);
break
;
}
default:
ERR
(
"oops
\n
"
);
default:
FIXME
(
"Unknown MCI return type %d
\n
"
,
retType
);
}
}
return
LOWORD
(
dwRet
);
...
...
@@ -1507,7 +1507,9 @@ DWORD WINAPI mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrRet,
break
;
#endif
default:
ERR
(
"oops
\n
"
);
FIXME
(
"Unknown MCI return type %d
\n
"
,
retType
);
dwRet
=
MCIERR_PARSER_INTERNAL
;
goto
errCleanUp
;
}
TRACE
(
"verb=%s on dev=%s; offset=%d
\n
"
,
...
...
@@ -1536,7 +1538,7 @@ DWORD WINAPI mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrRet,
case
MCI_OPEN
:
if
(
strcmpW
(
verb
,
wszOpen
))
{
FIXME
(
"Cannot open with command %s
\n
"
,
debugstr_w
(
verb
));
dwRet
=
MCIERR_INTERNAL
;
dwRet
=
MCIERR_
DRIVER_
INTERNAL
;
wMsg
=
0
;
goto
errCleanUp
;
}
...
...
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