Christian Costa : mciqtz32: Show messages in hex as they are defines in headers.

Alexandre Julliard julliard at winehq.org
Mon Apr 20 11:33:10 CDT 2009


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

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Thu Apr 16 20:29:17 2009 +0200

mciqtz32: Show messages in hex as they are defines in headers.

---

 dlls/mciqtz32/mciqtz.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/mciqtz32/mciqtz.c b/dlls/mciqtz32/mciqtz.c
index 15dd6b4..0719c91 100644
--- a/dlls/mciqtz32/mciqtz.c
+++ b/dlls/mciqtz32/mciqtz.c
@@ -484,18 +484,18 @@ LRESULT CALLBACK MCIQTZ_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
         case MCI_UNDO:
         case MCI_CONFIGURE:
         case MCI_RESTORE:
-            FIXME("Unimplemented command [%u]\n", wMsg);
+            FIXME("Unimplemented command [%08X]\n", wMsg);
             break;
         case MCI_SPIN:
         case MCI_ESCAPE:
-            WARN("Unsupported command [%u]\n", wMsg);
+            WARN("Unsupported command [%08X]\n", wMsg);
             break;
         case MCI_OPEN:
         case MCI_CLOSE:
             FIXME("Shouldn't receive a MCI_OPEN or CLOSE message\n");
             break;
         default:
-            TRACE("Sending msg [%u] to default driver proc\n", wMsg);
+            TRACE("Sending msg [%08X] to default driver proc\n", wMsg);
             return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);
     }
 




More information about the wine-cvs mailing list