gdiplus: Stub GdipGetEmHeight.
This commit is contained in:
parent
45c3d74cad
commit
33cb831f24
|
@ -491,6 +491,30 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
|
|||
return Ok;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
* GdipGetEmHeight [GDIPLUS.@]
|
||||
*
|
||||
* Gets the height of the specified family in EmHeights
|
||||
*
|
||||
* PARAMS
|
||||
* family [I] Family to retrieve from
|
||||
* style [I] (optional) style
|
||||
* EmHeight [O] return value
|
||||
*
|
||||
* RETURNS
|
||||
* SUCCESS: Ok
|
||||
* FAILURE: InvalidParameter
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16* EmHeight)
|
||||
{
|
||||
if (!(family && EmHeight)) return InvalidParameter;
|
||||
|
||||
FIXME("Stub!\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
* GdipGetLineSpacing [GDIPLUS.@]
|
||||
*
|
||||
|
|
|
@ -260,7 +260,7 @@
|
|||
@ stdcall GdipGetDpiY(ptr ptr)
|
||||
@ stub GdipGetEffectParameterSize
|
||||
@ stub GdipGetEffectParameters
|
||||
@ stub GdipGetEmHeight
|
||||
@ stdcall GdipGetEmHeight(ptr long ptr)
|
||||
@ stub GdipGetEncoderParameterList
|
||||
@ stub GdipGetEncoderParameterListSize
|
||||
@ stub GdipGetFamily
|
||||
|
|
|
@ -378,6 +378,7 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
|
|||
GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily*, GpFontFamily**);
|
||||
GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily*);
|
||||
GpStatus WINGDIPAPI GdipGetFamilyName(GDIPCONST GpFontFamily*, WCHAR*, LANGID);
|
||||
GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily**);
|
||||
|
|
Loading…
Reference in New Issue