gdi32: Move two 16bit function stubs to gdi16.c.
This commit is contained in:
parent
e03f478aee
commit
3db6eeeda9
|
@ -1454,26 +1454,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.
|
||||
|
@ -2407,15 +2387,6 @@ DWORD WINAPI SetMapperFlags( HDC hDC, DWORD dwFlag )
|
|||
return ret;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetAspectRatioFilterEx (GDI.486)
|
||||
*/
|
||||
BOOL16 WINAPI GetAspectRatioFilterEx16( HDC16 hdc, LPSIZE16 pAspectRatio )
|
||||
{
|
||||
FIXME("(%04x, %p): -- Empty Stub !\n", hdc, pAspectRatio);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetAspectRatioFilterEx (GDI32.@)
|
||||
*/
|
||||
|
|
|
@ -1727,6 +1727,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)
|
||||
*/
|
||||
|
@ -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)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue