shlwapi: Forward GetStringType3ExW to GetStringTypeW.

This commit is contained in:
Dmitry Timoshkov 2007-10-25 14:11:26 +09:00 committed by Alexandre Julliard
parent f7a7e6d9f9
commit ae89239cde
1 changed files with 2 additions and 3 deletions

View 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);
}
/*************************************************************************