Module: wine Branch: refs/heads/master Commit: 80634596a516f79b07c63eb7c9b8448933614e0e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=80634596a516f79b07c63eb7...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Apr 21 11:27:38 2006 +0200
gdi: Added WineEngGetCharABCWidthsI stub for the non-freetype case.
---
dlls/gdi/freetype.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/dlls/gdi/freetype.c b/dlls/gdi/freetype.c index 9546986..1c923ec 100644 --- a/dlls/gdi/freetype.c +++ b/dlls/gdi/freetype.c @@ -4136,6 +4136,13 @@ BOOL WineEngGetCharABCWidths(GdiFont fon return FALSE; }
+BOOL WineEngGetCharABCWidthsI(GdiFont font, UINT firstChar, UINT count, LPWORD pgi, + LPABC buffer) +{ + ERR("called but we don't have FreeType\n"); + return FALSE; +} + BOOL WineEngGetTextExtentPoint(GdiFont font, LPCWSTR wstr, INT count, LPSIZE size) {