qcap/tests: AVICo might be unavaiable on newer Win10.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2018-09-15 14:47:32 +02:00 committed by Alexandre Julliard
parent 056c0039b2
commit 217d3d6d7f
1 changed files with 2 additions and 2 deletions

View File

@ -1803,8 +1803,8 @@ static void test_AviCo(void)
static const WCHAR outputW[] = {'O','u','t','p','u','t',0};
hres = CoCreateInstance(&CLSID_AVICo, NULL, CLSCTX_INPROC_SERVER, &IID_IBaseFilter, (void**)&avico);
if(hres == REGDB_E_CLASSNOTREG) {
win_skip("CLSID_AVICo not registered\n");
if(hres == REGDB_E_CLASSNOTREG || hres == CLASS_E_CLASSNOTAVAILABLE) {
win_skip("CLSID_AVICo not registered/available\n");
return;
}
ok(hres == S_OK, "Could not create CLSID_AVICo class: %08x\n", hres);