Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a1fca927
Commit
a1fca927
authored
Apr 27, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat/tests: Use file scheme handler CLSID from mfuuid.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
17db99e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
mfplat.c
dlls/mfplat/tests/mfplat.c
+3
-2
No files found.
dlls/mfplat/tests/mfplat.c
View file @
a1fca927
...
...
@@ -49,7 +49,8 @@ DEFINE_GUID(DUMMY_CLSID, 0x12345678,0x1234,0x1234,0x12,0x13,0x14,0x15,0x16,0x17,
DEFINE_GUID
(
DUMMY_GUID1
,
0x12345678
,
0x1234
,
0x1234
,
0x21
,
0x21
,
0x21
,
0x21
,
0x21
,
0x21
,
0x21
,
0x21
);
DEFINE_GUID
(
DUMMY_GUID2
,
0x12345678
,
0x1234
,
0x1234
,
0x22
,
0x22
,
0x22
,
0x22
,
0x22
,
0x22
,
0x22
,
0x22
);
DEFINE_GUID
(
DUMMY_GUID3
,
0x12345678
,
0x1234
,
0x1234
,
0x23
,
0x23
,
0x23
,
0x23
,
0x23
,
0x23
,
0x23
,
0x23
);
DEFINE_GUID
(
CLSID_FileSchemeHandler
,
0x477ec299
,
0x1421
,
0x4bdd
,
0x97
,
0x1f
,
0x7c
,
0xcb
,
0x93
,
0x3f
,
0x21
,
0xad
);
extern
const
CLSID
CLSID_FileSchemePlugin
;
DEFINE_MEDIATYPE_GUID
(
MFVideoFormat_IMC1
,
MAKEFOURCC
(
'I'
,
'M'
,
'C'
,
'1'
));
DEFINE_MEDIATYPE_GUID
(
MFVideoFormat_IMC2
,
MAKEFOURCC
(
'I'
,
'M'
,
'C'
,
'2'
));
...
...
@@ -634,7 +635,7 @@ skip_source_tests:
ok
(
SUCCEEDED
(
hr
),
"Failed to initialize, hr %#x.
\n
"
,
hr
);
do_uninit
=
hr
==
S_OK
;
hr
=
CoCreateInstance
(
&
CLSID_FileScheme
Handler
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IMFSchemeHandler
,
hr
=
CoCreateInstance
(
&
CLSID_FileScheme
Plugin
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IMFSchemeHandler
,
(
void
**
)
&
scheme_handler
);
ok
(
hr
==
S_OK
,
"Failed to create handler object, hr %#x.
\n
"
,
hr
);
...
...
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