mirror of
https://github.com/reactos/wine.git
synced 2024-11-30 23:20:56 +00:00
qcap/tests: Fix test failures on Win64.
This commit is contained in:
parent
1eb6e5dd80
commit
876d1d9eb8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user