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
3db6eeed
Commit
3db6eeed
authored
Feb 13, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 13, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Move two 16bit function stubs to gdi16.c.
parent
e03f478a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
29 deletions
+35
-29
font.c
dlls/gdi32/font.c
+0
-29
gdi16.c
dlls/gdi32/gdi16.c
+35
-0
No files found.
dlls/gdi32/font.c
View file @
3db6eeed
...
...
@@ -1455,26 +1455,6 @@ BOOL WINAPI GetTextMetricsW( HDC hdc, TEXTMETRICW *metrics )
/***********************************************************************
* GetOutlineTextMetrics [GDI.308] Gets metrics for TrueType fonts.
*
* NOTES
* lpOTM should be LPOUTLINETEXTMETRIC
*
* RETURNS
* Success: Non-zero or size of required buffer
* Failure: 0
*/
UINT16
WINAPI
GetOutlineTextMetrics16
(
HDC16
hdc
,
/* [in] Handle of device context */
UINT16
cbData
,
/* [in] Size of metric data array */
LPOUTLINETEXTMETRIC16
lpOTM
)
/* [out] Address of metric data array */
{
FIXME
(
"(%04x,%04x,%p): stub
\n
"
,
hdc
,
cbData
,
lpOTM
);
return
0
;
}
/***********************************************************************
* GetOutlineTextMetricsA (GDI32.@)
* Gets metrics for TrueType fonts.
*
...
...
@@ -2408,15 +2388,6 @@ DWORD WINAPI SetMapperFlags( HDC hDC, DWORD dwFlag )
}
/***********************************************************************
* GetAspectRatioFilterEx (GDI.486)
*/
BOOL16
WINAPI
GetAspectRatioFilterEx16
(
HDC16
hdc
,
LPSIZE16
pAspectRatio
)
{
FIXME
(
"(%04x, %p): -- Empty Stub !
\n
"
,
hdc
,
pAspectRatio
);
return
FALSE
;
}
/***********************************************************************
* GetAspectRatioFilterEx (GDI32.@)
*/
BOOL
WINAPI
GetAspectRatioFilterEx
(
HDC
hdc
,
LPSIZE
pAspectRatio
)
...
...
dlls/gdi32/gdi16.c
View file @
3db6eeed
...
...
@@ -1728,6 +1728,31 @@ BOOL16 WINAPI GetCharABCWidths16( HDC16 hdc, UINT16 firstChar, UINT16 lastChar,
/***********************************************************************
* GetOutlineTextMetrics (GDI.308)
*
* Gets metrics for TrueType fonts.
*
* PARAMS
* hdc [In] Handle of device context
* cbData [In] Size of metric data array
* lpOTM [Out] Address of metric data array
*
* RETURNS
* Success: Non-zero or size of required buffer
* Failure: 0
*
* NOTES
* lpOTM should be LPOUTLINETEXTMETRIC
*/
UINT16
WINAPI
GetOutlineTextMetrics16
(
HDC16
hdc
,
UINT16
cbData
,
LPOUTLINETEXTMETRIC16
lpOTM
)
{
FIXME
(
"(%04x,%04x,%p): stub
\n
"
,
hdc
,
cbData
,
lpOTM
);
return
0
;
}
/***********************************************************************
* GetGlyphOutline (GDI.309)
*/
DWORD
WINAPI
GetGlyphOutline16
(
HDC16
hdc
,
UINT16
uChar
,
UINT16
fuFormat
,
...
...
@@ -2611,6 +2636,16 @@ BOOL16 WINAPI ScaleWindowExtEx16( HDC16 hdc, INT16 xNum, INT16 xDenom,
}
/***********************************************************************
* GetAspectRatioFilterEx (GDI.486)
*/
BOOL16
WINAPI
GetAspectRatioFilterEx16
(
HDC16
hdc
,
LPSIZE16
pAspectRatio
)
{
FIXME
(
"(%04x, %p): -- Empty Stub !
\n
"
,
hdc
,
pAspectRatio
);
return
FALSE
;
}
/******************************************************************************
* PolyBezier (GDI.502)
*/
...
...
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