gdiplus: Stub GdipGetCellDescent.
This commit is contained in:
parent
15831e0a0a
commit
f6da80297d
|
@ -500,6 +500,15 @@ GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family, INT style,
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily *family, INT style, UINT16 * CellDescent)
|
||||
{
|
||||
if (!(family && CellDescent)) return InvalidParameter;
|
||||
|
||||
FIXME("stub!\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
* GdipGetEmHeight [GDIPLUS.@]
|
||||
*
|
||||
|
|
|
@ -243,7 +243,7 @@
|
|||
@ stub GdipGetAllPropertyItems
|
||||
@ stdcall GdipGetBrushType(ptr ptr)
|
||||
@ stdcall GdipGetCellAscent(ptr long ptr)
|
||||
@ stub GdipGetCellDescent
|
||||
@ stdcall GdipGetCellDescent(ptr long ptr)
|
||||
@ stdcall GdipGetClip(ptr ptr)
|
||||
@ stub GdipGetClipBounds
|
||||
@ stub GdipGetClipBoundsI
|
||||
|
|
|
@ -379,6 +379,7 @@ GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily*, GpFontFamily**);
|
|||
GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily*);
|
||||
GpStatus WINGDIPAPI GdipGetFamilyName(GDIPCONST GpFontFamily*, WCHAR*, LANGID);
|
||||
GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily*, INT, UINT16*);
|
||||
|
||||
|
|
Loading…
Reference in New Issue