Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
217d3d6d
Commit
217d3d6d
authored
Sep 15, 2018
by
André Hentschel
Committed by
Alexandre Julliard
Sep 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
056c0039
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
qcap.c
dlls/qcap/tests/qcap.c
+2
-2
No files found.
dlls/qcap/tests/qcap.c
View file @
217d3d6d
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment