Module: wine Branch: master Commit: 74d6990494af532c7611a2887b02fbdc75592231 URL: http://source.winehq.org/git/wine.git/?a=commit;h=74d6990494af532c7611a2887b... Author: Andrew Eikum <aeikum(a)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; }