shlwapi: Forward GetStringType3ExW to GetStringTypeW.
authorDmitry Timoshkov <dmitry@codeweavers.com>
Thu, 25 Oct 2007 05:11:26 +0000 (14:11 +0900)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 25 Oct 2007 10:48:53 +0000 (12:48 +0200)
dlls/shlwapi/ordinal.c

index 643268a..c3f5371 100644 (file)
@@ -732,10 +732,9 @@ BOOL WINAPI IsCharXDigitW(WCHAR wc)
  *      @      [SHLWAPI.35]
  *
  */
-BOOL WINAPI GetStringType3ExW(LPWSTR lpszStr, DWORD dwLen, LPVOID p3)
+BOOL WINAPI GetStringType3ExW(LPWSTR src, INT count, LPWORD type)
 {
-    FIXME("(%s,0x%08x,%p): stub\n", debugstr_w(lpszStr), dwLen, p3);
-    return TRUE;
+    return GetStringTypeW(CT_CTYPE3, src, count, type);
 }
 
 /*************************************************************************