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
1bf91971
Commit
1bf91971
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: Test for GdipGetFamily.
parent
6dc67fd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
font.c
dlls/gdiplus/tests/font.c
+13
-1
No files found.
dlls/gdiplus/tests/font.c
View file @
1bf91971
...
...
@@ -41,12 +41,13 @@ static const char *debugstr_w(LPCWSTR str)
static
void
test_createfont
(
void
)
{
GpFontFamily
*
fontfamily
=
NULL
;
GpFontFamily
*
fontfamily
=
NULL
,
*
fontfamily2
;
GpFont
*
font
=
NULL
;
GpStatus
stat
;
Unit
unit
;
UINT
i
;
REAL
size
;
WCHAR
familyname
[
LF_FACESIZE
];
stat
=
GdipCreateFontFamilyFromName
(
nonexistent
,
NULL
,
&
fontfamily
);
expect
(
FontFamilyNotFound
,
stat
);
...
...
@@ -65,6 +66,17 @@ static void test_createfont(void)
expect
(
Ok
,
stat
);
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
);
expect
(
Ok
,
stat
);
/* Test to see if returned size is based on unit (its not) */
GdipGetFontSize
(
font
,
&
size
);
ok
(
size
==
12
,
"Expected 12, got %f
\n
"
,
size
);
...
...
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