qcap/tests: Fix test failures on Win64.

This commit is contained in:
Huw Davies 2015-07-29 08:27:57 +01:00 committed by Alexandre Julliard
parent 1eb6e5dd80
commit 876d1d9eb8
1 changed files with 5 additions and 0 deletions

View File

@ -1907,6 +1907,11 @@ static void test_COM_vfwcapture(void)
/* COM aggregation */
hr = CoCreateInstance(&CLSID_VfwCapture, &unk_obj.IUnknown_iface, CLSCTX_INPROC_SERVER,
&IID_IUnknown, (void**)&unk_obj.inner_unk);
if (hr == REGDB_E_CLASSNOTREG)
{
win_skip("CLSID_VfwCapture not registered\n");
return;
}
ok(hr == S_OK, "VfwCapture create failed: %08x\n", hr);
hr = IUnknown_QueryInterface(unk_obj.inner_unk, &IID_IBaseFilter, (void**)&bf);
ok(hr == S_OK, "QueryInterface for IID_IBaseFilter failed: %08x\n", hr);