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
01d607dc
Commit
01d607dc
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 GdipPrivateAddFontFile.
parent
cfde2785
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
font.c
dlls/gdiplus/font.c
+11
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/font.c
View file @
01d607dc
...
@@ -653,3 +653,14 @@ GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontColle
...
@@ -653,3 +653,14 @@ GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontColle
return
NotImplemented
;
return
NotImplemented
;
}
}
GpStatus
WINGDIPAPI
GdipPrivateAddFontFile
(
GpFontCollection
*
fontCollection
,
GDIPCONST
WCHAR
*
filename
)
{
FIXME
(
"stub: %p, %s
\n
"
,
fontCollection
,
debugstr_w
(
filename
));
if
(
!
(
fontCollection
&&
filename
))
return
InvalidParameter
;
return
NotImplemented
;
}
dlls/gdiplus/gdiplus.spec
View file @
01d607dc
...
@@ -464,7 +464,7 @@
...
@@ -464,7 +464,7 @@
@ stdcall GdipPathIterRewind(ptr)
@ stdcall GdipPathIterRewind(ptr)
@ stub GdipPlayMetafileRecord
@ stub GdipPlayMetafileRecord
@ stub GdipPlayTSClientRecord
@ stub GdipPlayTSClientRecord
@ st
ub GdipPrivateAddFontFile
@ st
dcall GdipPrivateAddFontFile(ptr wstr)
@ stub GdipPrivateAddMemoryFont
@ stub GdipPrivateAddMemoryFont
@ stub GdipRecordMetafile
@ stub GdipRecordMetafile
@ stub GdipRecordMetafileFileName
@ stub GdipRecordMetafileFileName
...
...
include/gdiplusflat.h
View file @
01d607dc
...
@@ -422,6 +422,7 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily**);
...
@@ -422,6 +422,7 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily**);
GpStatus
WINGDIPAPI
GdipNewPrivateFontCollection
(
GpFontCollection
**
);
GpStatus
WINGDIPAPI
GdipNewPrivateFontCollection
(
GpFontCollection
**
);
GpStatus
WINGDIPAPI
GdipDeletePrivateFontCollection
(
GpFontCollection
**
);
GpStatus
WINGDIPAPI
GdipDeletePrivateFontCollection
(
GpFontCollection
**
);
GpStatus
WINGDIPAPI
GdipPrivateAddFontFile
(
GpFontCollection
*
,
GDIPCONST
WCHAR
*
);
GpStatus
WINGDIPAPI
GdipCreateStringFormat
(
INT
,
LANGID
,
GpStringFormat
**
);
GpStatus
WINGDIPAPI
GdipCreateStringFormat
(
INT
,
LANGID
,
GpStringFormat
**
);
GpStatus
WINGDIPAPI
GdipDeleteStringFormat
(
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