mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[WINMM_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70952
This commit is contained in:
parent
15e3e7fd28
commit
0916eb633b
1 changed files with 4 additions and 0 deletions
|
@ -438,11 +438,13 @@ static void mixer_test_deviceA(int device)
|
|||
|
||||
mixerlineA.cbStruct = sizeof(mixerlineA);
|
||||
mixerlineA.dwDestination=d;
|
||||
mixerlineA.dwUser = (ULONG_PTR)0xdeadbeef;
|
||||
rc = mixerGetLineInfoA(mix, &mixerlineA, MIXER_GETLINEINFOF_DESTINATION);
|
||||
ok(rc==MMSYSERR_NOERROR||rc==MMSYSERR_NODRIVER,
|
||||
"mixerGetLineInfoA(MIXER_GETLINEINFOF_DESTINATION): "
|
||||
"MMSYSERR_NOERROR expected, got %s\n",
|
||||
mmsys_error(rc));
|
||||
ok(mixerlineA.dwUser == 0, "dwUser was not reset\n");
|
||||
if (rc==MMSYSERR_NODRIVER)
|
||||
trace(" No Driver\n");
|
||||
else if (rc==MMSYSERR_NOERROR) {
|
||||
|
@ -822,11 +824,13 @@ static void mixer_test_deviceW(int device)
|
|||
|
||||
mixerlineW.cbStruct = sizeof(mixerlineW);
|
||||
mixerlineW.dwDestination=d;
|
||||
mixerlineW.dwUser = (ULONG_PTR)0xdeadbeef;
|
||||
rc = mixerGetLineInfoW(mix, &mixerlineW, MIXER_GETLINEINFOF_DESTINATION);
|
||||
ok(rc==MMSYSERR_NOERROR||rc==MMSYSERR_NODRIVER,
|
||||
"mixerGetLineInfoW(MIXER_GETLINEINFOF_DESTINATION): "
|
||||
"MMSYSERR_NOERROR expected, got %s\n",
|
||||
mmsys_error(rc));
|
||||
ok(mixerlineW.dwUser == 0, "dwUser was not reset\n");
|
||||
if (rc==MMSYSERR_NODRIVER)
|
||||
trace(" No Driver\n");
|
||||
else if (rc==MMSYSERR_NOERROR && winetest_interactive) {
|
||||
|
|
Loading…
Reference in a new issue