Commit 147bf5bd authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

dmime/tests: Fix a crash in Windows 2000.

parent d2793fe2
......@@ -380,6 +380,10 @@ static void test_audiopathconfig(void)
hr = CoCreateInstance(&CLSID_DirectMusicAudioPathConfig, NULL, CLSCTX_INPROC_SERVER,
&IID_IDirectMusicObject, (void**)&dmo);
if (hr == REGDB_E_CLASSNOTREG) {
win_skip("DirectMusicAudioPathConfig not registered\n");
return;
}
ok(hr == S_OK, "DirectMusicAudioPathConfig create failed: %08x, expected S_OK\n", hr);
/* IPersistStream */
......
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