From ff0bdc14d47d1b310e2d22b6b9445844dbfbc86e Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 18 Jan 2006 22:02:44 +0000 Subject: [PATCH] Start Wine port for most Gdi functions. GetCharWidthA should be redirected to GetCharWidth32A in the def file. Just taking one step at a time ATM. svn path=/trunk/; revision=20945 --- reactos/lib/gdi32/objects/font.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/lib/gdi32/objects/font.c b/reactos/lib/gdi32/objects/font.c index c0551112199..bd458abd800 100644 --- a/reactos/lib/gdi32/objects/font.c +++ b/reactos/lib/gdi32/objects/font.c @@ -331,8 +331,7 @@ GetCharWidthA ( LPINT lpBuffer ) { - /* FIXME what to do with iFirstChar and iLastChar ??? */ - return NtGdiGetCharWidth32 ( hdc, iFirstChar, iLastChar, lpBuffer ); + return GetCharWidth32A ( hdc, iFirstChar, iLastChar, lpBuffer ); }