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
4e3b5b87
Commit
4e3b5b87
authored
Dec 30, 2009
by
Christian Costa
Committed by
Alexandre Julliard
Dec 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciqtz: Improve MCIQTZ_mciSet traces.
parent
7da10bca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
mciqtz.c
dlls/mciqtz32/mciqtz.c
+19
-2
No files found.
dlls/mciqtz32/mciqtz.c
View file @
4e3b5b87
...
...
@@ -436,8 +436,25 @@ static DWORD MCIQTZ_mciSet(UINT wDevID, DWORD dwFlags, LPMCI_DGV_SET_PARMS lpPar
}
}
if
(
dwFlags
&
~
MCI_SET_TIME_FORMAT
)
FIXME
(
"Flags not supported yet %08lX
\n
"
,
dwFlags
&
~
MCI_SET_TIME_FORMAT
);
if
(
dwFlags
&
MCI_SET_DOOR_OPEN
)
FIXME
(
"MCI_SET_DOOR_OPEN not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_DOOR_CLOSED
)
FIXME
(
"MCI_SET_DOOR_CLOSED not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_AUDIO
)
FIXME
(
"MCI_SET_AUDIO not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_VIDEO
)
FIXME
(
"MCI_SET_VIDEO not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_ON
)
FIXME
(
"MCI_SET_ON not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_OFF
)
FIXME
(
"MCI_SET_OFF not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_AUDIO_LEFT
)
FIXME
(
"MCI_SET_AUDIO_LEFT not implemented yet
\n
"
);
if
(
dwFlags
&
MCI_SET_AUDIO_RIGHT
)
FIXME
(
"MCI_SET_AUDIO_RIGHT not implemented yet
\n
"
);
if
(
dwFlags
&
~
0x7f03
/* All MCI_SET flags mask */
)
ERR
(
"Unknown flags %08x
\n
"
,
dwFlags
&
~
0x7f03
);
return
0
;
}
...
...
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