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
f923b6bb
Commit
f923b6bb
authored
Nov 24, 2022
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Nov 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.media: Partially implement IClosedCaptionPropertiesStatics_get_FontEffect.
parent
925c1425
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
captions.c
dlls/windows.media/captions.c
+4
-2
captions.c
dlls/windows.media/tests/captions.c
+2
-2
No files found.
dlls/windows.media/captions.c
View file @
f923b6bb
...
...
@@ -166,8 +166,10 @@ static HRESULT WINAPI captions_get_FontStyle( IClosedCaptionPropertiesStatics *i
static
HRESULT
WINAPI
captions_get_FontEffect
(
IClosedCaptionPropertiesStatics
*
iface
,
ClosedCaptionEdgeEffect
*
value
)
{
FIXME
(
"iface %p, value %p stub!
\n
"
,
iface
,
value
);
return
E_NOTIMPL
;
FIXME
(
"iface %p, value %p semi-stub.
\n
"
,
iface
,
value
);
*
value
=
ClosedCaptionEdgeEffect_Default
;
return
S_OK
;
}
static
HRESULT
WINAPI
captions_get_BackgroundColor
(
IClosedCaptionPropertiesStatics
*
iface
,
ClosedCaptionColor
*
value
)
...
...
dlls/windows.media/tests/captions.c
View file @
f923b6bb
...
...
@@ -112,8 +112,8 @@ static void test_CaptionStatics(void)
effect
=
0xdeadbeef
;
hr
=
IClosedCaptionPropertiesStatics_get_FontEffect
(
caption_statics
,
&
effect
);
todo_wine
ok
(
hr
==
S_OK
,
"get_FontEffect returned %#lx
\n
"
,
hr
);
todo_wine
ok
(
effect
==
ClosedCaptionEdgeEffect_Default
,
"expected default font effect, got %d
\n
"
,
effect
);
ok
(
hr
==
S_OK
,
"get_FontEffect returned %#lx
\n
"
,
hr
);
ok
(
effect
==
ClosedCaptionEdgeEffect_Default
,
"expected default font effect, got %d
\n
"
,
effect
);
color
=
0xdeadbeef
;
hr
=
IClosedCaptionPropertiesStatics_get_BackgroundColor
(
caption_statics
,
&
color
);
...
...
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