winmm/tests: Ignore spurious WM_DWMCOLORIZATIONCOLORCHANGED messages.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54557
This commit is contained in:
Francois Gouget 2023-02-22 15:57:22 +01:00 committed by Alexandre Julliard
parent aa1cc9ad38
commit 632c8cfd2b

View file

@ -39,8 +39,9 @@ extern const char* mmsys_error(MMRESULT error); /* from wave.c */
static BOOL spurious_message(LPMSG msg)
{
/* WM_DEVICECHANGE 0x0219 appears randomly */
if(msg->message == WM_DEVICECHANGE) {
/* These messages appear randomly */
if(msg->message == WM_DEVICECHANGE ||
msg->message == WM_DWMCOLORIZATIONCOLORCHANGED) {
trace("skipping spurious message %04x\n", msg->message);
return TRUE;
}