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
1e33bdcf
Commit
1e33bdcf
authored
Aug 13, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Aug 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipCreateFontFromLogfontA.
parent
d060aecc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
font.c
dlls/gdiplus/font.c
+19
-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 @
1e33bdcf
...
...
@@ -21,6 +21,7 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "objbase.h"
...
...
@@ -40,3 +41,21 @@ GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipCreateFontFromLogfontA
(
HDC
hdc
,
GDIPCONST
LOGFONTA
*
lfa
,
GpFont
**
font
)
{
LOGFONTW
lfw
;
if
(
!
lfa
||
!
font
)
return
InvalidParameter
;
memcpy
(
&
lfw
,
lfa
,
sizeof
(
LOGFONTA
));
if
(
!
MultiByteToWideChar
(
CP_ACP
,
0
,
lfa
->
lfFaceName
,
-
1
,
lfw
.
lfFaceName
,
LF_FACESIZE
))
return
GenericError
;
GdipCreateFontFromLogfontW
(
hdc
,
&
lfw
,
font
);
return
Ok
;
}
dlls/gdiplus/gdiplus.spec
View file @
1e33bdcf
...
...
@@ -87,7 +87,7 @@
@ stub GdipCreateFont
@ stub GdipCreateFontFamilyFromName
@ stub GdipCreateFontFromDC
@ st
ub GdipCreateFontFromLogfontA
@ st
dcall GdipCreateFontFromLogfontA(ptr ptr ptr)
@ stdcall GdipCreateFontFromLogfontW(ptr ptr ptr)
@ stub GdipCreateFromHDC2
@ stdcall GdipCreateFromHDC(long ptr)
...
...
include/gdiplusflat.h
View file @
1e33bdcf
...
...
@@ -236,6 +236,7 @@ GpStatus WINGDIPAPI GdipSetImageAttributesColorMatrix(GpImageAttributes*,
GpStatus
WINGDIPAPI
GdipSetImageAttributesWrapMode
(
GpImageAttributes
*
,
WrapMode
,
ARGB
,
BOOL
);
GpStatus
WINGDIPAPI
GdipCreateFontFromLogfontA
(
HDC
,
GDIPCONST
LOGFONTA
*
,
GpFont
**
);
GpStatus
WINGDIPAPI
GdipCreateFontFromLogfontW
(
HDC
,
GDIPCONST
LOGFONTW
*
,
GpFont
**
);
#ifdef __cplusplus
...
...
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