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
70c747d9
Commit
70c747d9
authored
Jul 22, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jul 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipGetFontCollectionFamilyList.
parent
6966c690
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
font.c
dlls/gdiplus/font.c
+13
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
gdiplusflat.h
include/gdiplusflat.h
+2
-0
No files found.
dlls/gdiplus/font.c
View file @
70c747d9
...
...
@@ -675,3 +675,16 @@ GpStatus WINGDIPAPI GdipGetFontCollectionFamilyCount(
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipGetFontCollectionFamilyList
(
GpFontCollection
*
fontCollection
,
INT
numSought
,
GpFontFamily
*
gpfamilies
[],
INT
*
numFound
)
{
FIXME
(
"stub: %p, %d, %p, %p
\n
"
,
fontCollection
,
numSought
,
gpfamilies
,
numFound
);
if
(
!
(
fontCollection
&&
gpfamilies
&&
numFound
))
return
InvalidParameter
;
return
NotImplemented
;
}
dlls/gdiplus/gdiplus.spec
View file @
70c747d9
...
...
@@ -266,7 +266,7 @@
@ stub GdipGetFamily
@ stdcall GdipGetFamilyName(ptr ptr long)
@ stdcall GdipGetFontCollectionFamilyCount(ptr ptr)
@ st
ub GdipGetFontCollectionFamilyList
@ st
dcall GdipGetFontCollectionFamilyList(ptr long ptr ptr)
@ stub GdipGetFontHeight
@ stdcall GdipGetFontHeightGivenDPI(ptr long ptr)
@ stdcall GdipGetFontSize(ptr ptr)
...
...
include/gdiplusflat.h
View file @
70c747d9
...
...
@@ -424,6 +424,8 @@ GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection**);
GpStatus
WINGDIPAPI
GdipDeletePrivateFontCollection
(
GpFontCollection
**
);
GpStatus
WINGDIPAPI
GdipPrivateAddFontFile
(
GpFontCollection
*
,
GDIPCONST
WCHAR
*
);
GpStatus
WINGDIPAPI
GdipGetFontCollectionFamilyCount
(
GpFontCollection
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipGetFontCollectionFamilyList
(
GpFontCollection
*
,
INT
,
GpFontFamily
*
[],
INT
*
);
GpStatus
WINGDIPAPI
GdipCreateStringFormat
(
INT
,
LANGID
,
GpStringFormat
**
);
GpStatus
WINGDIPAPI
GdipDeleteStringFormat
(
GpStringFormat
*
);
...
...
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