Skip to content
Snippets Groups Projects
Commit 74d69904 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard
Browse files

winmm: TRACE unhandled messages.

parent be7a93cf
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment