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
69b6e0bd
Commit
69b6e0bd
authored
Aug 27, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Aug 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipGetFamily.
parent
837dae3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
font.c
dlls/gdiplus/font.c
+5
-2
font.c
dlls/gdiplus/tests/font.c
+0
-2
No files found.
dlls/gdiplus/font.c
View file @
69b6e0bd
...
...
@@ -265,9 +265,12 @@ GpStatus WINGDIPAPI GdipCreateFontFromDC(HDC hdc, GpFont **font)
*/
GpStatus
WINGDIPAPI
GdipGetFamily
(
GpFont
*
font
,
GpFontFamily
**
family
)
{
FIXME
(
"stub:
%p %p
\n
"
,
font
,
family
);
TRACE
(
"
%p %p
\n
"
,
font
,
family
);
return
NotImplemented
;
if
(
!
(
font
&&
family
))
return
InvalidParameter
;
return
GdipCreateFontFamilyFromName
(
font
->
lfw
.
lfFaceName
,
NULL
,
family
);
}
/******************************************************************************
...
...
dlls/gdiplus/tests/font.c
View file @
69b6e0bd
...
...
@@ -67,11 +67,9 @@ static void test_createfont(void)
expect
(
UnitPoint
,
unit
);
stat
=
GdipGetFamily
(
font
,
&
fontfamily2
);
todo_wine
expect
(
Ok
,
stat
);
stat
=
GdipGetFamilyName
(
fontfamily2
,
familyname
,
0
);
expect
(
Ok
,
stat
);
todo_wine
ok
(
lstrcmpiW
(
arial
,
familyname
)
==
0
,
"Expected arial, got %s
\n
"
,
debugstr_w
(
familyname
));
stat
=
GdipDeleteFontFamily
(
fontfamily2
);
...
...
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