Commit ae89239c authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

shlwapi: Forward GetStringType3ExW to GetStringTypeW.

parent f7a7e6d9
......@@ -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);
}
/*************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment