From 21e636d08838d3f9b9e14570a8364b4ecefa2fb0 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sat, 21 Jan 2006 00:05:59 +0000 Subject: [PATCH] Implement the gdi function GetTextCharsetInfo. svn path=/trunk/; revision=20957 --- reactos/lib/gdi32/objects/text.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/reactos/lib/gdi32/objects/text.c b/reactos/lib/gdi32/objects/text.c index 1844c44c6c8..c3cfe8c232b 100644 --- a/reactos/lib/gdi32/objects/text.c +++ b/reactos/lib/gdi32/objects/text.c @@ -1,9 +1,6 @@ #include "precomp.h" -#define UNIMPLEMENTED DbgPrint("GDI32: %s is unimplemented, please try again later.\n", __FUNCTION__); - - /* * @implemented @@ -65,7 +62,7 @@ GetTextCharset( /* - * @unimplemented + * @implemented */ int STDCALL @@ -75,9 +72,7 @@ GetTextCharsetInfo( DWORD dwFlags ) { - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; + return NtGdiGetTextCharsetInfo(hdc, lpSig, dwFlags); }