Implement the gdi function GetTextCharsetInfo.
Modified: trunk/reactos/lib/gdi32/objects/text.c

Modified: trunk/reactos/lib/gdi32/objects/text.c
--- trunk/reactos/lib/gdi32/objects/text.c	2006-01-21 00:04:14 UTC (rev 20956)
+++ trunk/reactos/lib/gdi32/objects/text.c	2006-01-21 00:05:59 UTC (rev 20957)
@@ -1,10 +1,7 @@
 #include "precomp.h"
 
 
-#define UNIMPLEMENTED DbgPrint("GDI32: %s is unimplemented, please try again later.\n", __FUNCTION__);
 
-        
-
 /*
  * @implemented
  */
@@ -65,7 +62,7 @@
 
 
 /*
- * @unimplemented
+ * @implemented
  */
 int
 STDCALL
@@ -75,9 +72,7 @@
 	DWORD		dwFlags
 	)
 {
-	UNIMPLEMENTED;
-	SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
-	return 0;
+        return NtGdiGetTextCharsetInfo(hdc, lpSig, dwFlags);
 }