Christian Costa : mciqtz: Improve MCIQTZ_mciSet traces.

Alexandre Julliard julliard at winehq.org
Wed Dec 30 10:18:18 CST 2009


Module: wine
Branch: master
Commit: 4e3b5b872e472e4f398ef81818fcb1f6e4c165a3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4e3b5b872e472e4f398ef81818fcb1f6e4c165a3

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Wed Dec 30 11:38:30 2009 +0100

mciqtz: Improve MCIQTZ_mciSet traces.

---

 dlls/mciqtz32/mciqtz.c |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/dlls/mciqtz32/mciqtz.c b/dlls/mciqtz32/mciqtz.c
index 1625a8d..a34caf8 100644
--- a/dlls/mciqtz32/mciqtz.c
+++ b/dlls/mciqtz32/mciqtz.c
@@ -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;
 }




More information about the wine-cvs mailing list