Implement the gdi function GetTextCharsetInfo.
authorJames Tabor <james.tabor@reactos.org>
Sat, 21 Jan 2006 00:05:59 +0000 (00:05 +0000)
committerJames Tabor <james.tabor@reactos.org>
Sat, 21 Jan 2006 00:05:59 +0000 (00:05 +0000)
svn path=/trunk/; revision=20957

reactos/lib/gdi32/objects/text.c

index 1844c44..c3cfe8c 100644 (file)
@@ -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);
 }