Implement the gdi function GetTextCharsetInfo.

svn path=/trunk/; revision=20957
This commit is contained in:
James Tabor
2006-01-21 00:05:59 +00:00
parent 4006543f96
commit 21e636d088
+2 -7
View 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);
}