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
2eacfecd
Commit
2eacfecd
authored
Feb 21, 2005
by
Alex Villacís Lasso
Committed by
Alexandre Julliard
Feb 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented GetGlyphOutline16.
parent
564acedd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
13 deletions
+21
-13
font.c
dlls/gdi/font.c
+0
-13
gdi16.c
dlls/gdi/gdi16.c
+21
-0
No files found.
dlls/gdi/font.c
View file @
2eacfecd
...
...
@@ -1924,19 +1924,6 @@ BOOL WINAPI GetCharABCWidthsW( HDC hdc, UINT firstChar, UINT lastChar,
/***********************************************************************
* GetGlyphOutline (GDI.309)
*/
DWORD
WINAPI
GetGlyphOutline16
(
HDC16
hdc
,
UINT16
uChar
,
UINT16
fuFormat
,
LPGLYPHMETRICS16
lpgm
,
DWORD
cbBuffer
,
LPVOID
lpBuffer
,
const
MAT2
*
lpmat2
)
{
FIXME
(
"(%04x, '%c', %04x, %p, %ld, %p, %p): stub
\n
"
,
hdc
,
uChar
,
fuFormat
,
lpgm
,
cbBuffer
,
lpBuffer
,
lpmat2
);
return
~
0UL
;
/* failure */
}
/***********************************************************************
* GetGlyphOutlineA (GDI32.@)
*/
DWORD
WINAPI
GetGlyphOutlineA
(
HDC
hdc
,
UINT
uChar
,
UINT
fuFormat
,
...
...
dlls/gdi/gdi16.c
View file @
2eacfecd
...
...
@@ -1719,6 +1719,27 @@ BOOL16 WINAPI GetCharABCWidths16( HDC16 hdc, UINT16 firstChar, UINT16 lastChar,
/***********************************************************************
* GetGlyphOutline (GDI.309)
*/
DWORD
WINAPI
GetGlyphOutline16
(
HDC16
hdc
,
UINT16
uChar
,
UINT16
fuFormat
,
LPGLYPHMETRICS16
lpgm
,
DWORD
cbBuffer
,
LPVOID
lpBuffer
,
const
MAT2
*
lpmat2
)
{
DWORD
ret
;
GLYPHMETRICS
gm32
;
ret
=
GetGlyphOutlineA
(
HDC_32
(
hdc
),
uChar
,
fuFormat
,
&
gm32
,
cbBuffer
,
lpBuffer
,
lpmat2
);
lpgm
->
gmBlackBoxX
=
gm32
.
gmBlackBoxX
;
lpgm
->
gmBlackBoxY
=
gm32
.
gmBlackBoxY
;
lpgm
->
gmptGlyphOrigin
.
x
=
gm32
.
gmptGlyphOrigin
.
x
;
lpgm
->
gmptGlyphOrigin
.
y
=
gm32
.
gmptGlyphOrigin
.
y
;
lpgm
->
gmCellIncX
=
gm32
.
gmCellIncX
;
lpgm
->
gmCellIncY
=
gm32
.
gmCellIncY
;
return
ret
;
}
/***********************************************************************
* CreateScalableFontResource (GDI.310)
*/
BOOL16
WINAPI
CreateScalableFontResource16
(
UINT16
fHidden
,
LPCSTR
lpszResourceFile
,
...
...
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