Module: wine Branch: master Commit: 15831e0a0a952e45861f77f37bfcf9aa364a1a2c URL: http://source.winehq.org/git/wine.git/?a=commit;h=15831e0a0a952e45861f77f37b...
Author: Adam Petaccia adam@tpetaccia.com Date: Thu Jul 3 14:26:33 2008 -0400
gdiplus: Stub GdipGetCellAscent.
---
dlls/gdiplus/font.c | 9 +++++++++ dlls/gdiplus/gdiplus.spec | 2 +- include/gdiplusflat.h | 1 + 3 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/font.c b/dlls/gdiplus/font.c index c2556cd..a5e3b01 100644 --- a/dlls/gdiplus/font.c +++ b/dlls/gdiplus/font.c @@ -491,6 +491,15 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily) return Ok; }
+GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family, INT style, UINT16 * CellAscent) +{ + if (!(family && CellAscent)) return InvalidParameter; + + FIXME("stub!\n"); + + return NotImplemented; +} + /******************************************************************************* * GdipGetEmHeight [GDIPLUS.@] * diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index 971eafd..d054503 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -242,7 +242,7 @@ @ stub GdipGetAdjustableArrowCapWidth @ stub GdipGetAllPropertyItems @ stdcall GdipGetBrushType(ptr ptr) -@ stub GdipGetCellAscent +@ stdcall GdipGetCellAscent(ptr long ptr) @ stub GdipGetCellDescent @ stdcall GdipGetClip(ptr ptr) @ stub GdipGetClipBounds diff --git a/include/gdiplusflat.h b/include/gdiplusflat.h index aba8bd9..cd940f0 100644 --- a/include/gdiplusflat.h +++ b/include/gdiplusflat.h @@ -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 GdipGetCellAscent(GDIPCONST GpFontFamily*, INT, UINT16*); GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily*, INT, UINT16*); GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily*, INT, UINT16*);