Commit bba54cd4 authored by Jeff Zaroyko's avatar Jeff Zaroyko Committed by Alexandre Julliard

winmm: Fix a failing mixer test on 98 and ME.

parent 5c19a62f
......@@ -379,8 +379,9 @@ static void mixer_test_deviceA(int device)
"mixerOpen: MMSYSERR_NOERROR expected, got %s\n",mmsys_error(rc));
if (rc==MMSYSERR_NOERROR) {
rc=mixerOpen(&mix, device, 0, 0, CALLBACK_FUNCTION);
ok(rc==MMSYSERR_INVALFLAG,
"mixerOpen: MMSYSERR_INVALFLAG expected, got %s\n", mmsys_error(rc));
ok(rc==MMSYSERR_INVALFLAG
|| rc==MMSYSERR_NOTSUPPORTED, /* 98/ME */
"mixerOpen: MMSYSERR_INVALFLAG or MMSYSERR_NOTSUPPORTED expected, got %s\n", mmsys_error(rc));
for (d=0;d<capsA.cDestinations;d++) {
MIXERLINEA mixerlineA;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment