Andrew Eikum : winmm: TRACE unhandled messages.

Alexandre Julliard julliard at winehq.org
Tue Feb 7 15:53:58 CST 2012


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

Author: Andrew Eikum <aeikum at codeweavers.com>
Date:   Tue Feb  7 10:07:57 2012 -0600

winmm: TRACE unhandled messages.

---

 dlls/winmm/waveform.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/winmm/waveform.c b/dlls/winmm/waveform.c
index 50c60ef..d7d2be6 100644
--- a/dlls/winmm/waveform.c
+++ b/dlls/winmm/waveform.c
@@ -2799,6 +2799,8 @@ UINT WINAPI waveOutMessage(HWAVEOUT hWaveOut, UINT uMessage,
         return MMSYSERR_NOERROR;
     }
 
+    TRACE("Message not supported: %u\n", uMessage);
+
     return MMSYSERR_NOTSUPPORTED;
 }
 
@@ -3173,6 +3175,8 @@ UINT WINAPI waveInMessage(HWAVEIN hWaveIn, UINT uMessage,
         return MMSYSERR_NOERROR;
     }
 
+    TRACE("Message not supported: %u\n", uMessage);
+
     return MMSYSERR_NOTSUPPORTED;
 }
 




More information about the wine-cvs mailing list