Hi Paul, Paul Vriens schreef:
On 12/14/2009 10:09 AM, Maarten Lankhorst wrote:
+ hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(mme, eRender, eMultimedia,&dev); + ok(hr == S_OK, "GetDefaultAudioEndpoint failed: 0x%08x\n", hr); + if (hr != S_OK) + { + skip("GetDefaultAudioEndpoint returns 0x%08x, skipping tests\n", hr); + return; + }
Hi Maarten,
This one introduces a failure on Vista+ (obviously) for boxes with a soundcard so it seems (by looking at other tests for these boxes):
http://test.winehq.org/data/tests/mmdevapi:dependency.html I sent a new series that should fix it, I'm guessing it's 0x80070000 + ERROR_NOT_FOUND which means that no sound card was installed, I'm adding it as allowed to fail there. mmdevapi tests are not really useful without sound card..
Cheers, Maarten.