From e84bc545c3580dc896dc680f833004844f49bdd8 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 25 Aug 2008 15:38:27 +0200 Subject: [PATCH] gdi32: Add missing WineEngRealizationInfo function for the non-freetype case. --- dlls/gdi32/freetype.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index 8bd75cbefb6..cb351db7693 100644 --- a/dlls/gdi32/freetype.c +++ b/dlls/gdi32/freetype.c @@ -6175,4 +6175,10 @@ DWORD WineEngGetKerningPairs(GdiFont *font, DWORD cPairs, KERNINGPAIR *kern_pair return 0; } +BOOL WineEngRealizationInfo(GdiFont *font, realization_info_t *info) +{ + ERR("called but we don't have FreeType\n"); + return FALSE; +} + #endif /* HAVE_FREETYPE */