shdocvw: Stub implementation of IEParseDisplayNameWithBCW.

oldstable
Aric Stewart 2009-01-22 14:59:08 -06:00 committed by Alexandre Julliard
parent 337067a89d
commit 3aebdbb65d
2 changed files with 11 additions and 1 deletions

View File

@ -89,7 +89,7 @@
215 stub -noname GetSearchAssistantUrlA
216 stub -noname GetDefaultInternetSearchUrlW
217 stub -noname GetDefaultInternetSearchUrlA
218 stub -noname IEParseDisplayNameWithBCW
218 stdcall -noname IEParseDisplayNameWithBCW(long wstr ptr ptr)
219 stub -noname IEILIsEqual
220 stub @
221 stub -noname IECreateFromPathCPWithBCA

View File

@ -396,3 +396,13 @@ DWORD WINAPI ParseURLFromOutsideSourceA(LPCSTR url, LPSTR out, LPDWORD plen, LPD
TRACE("=> %d\n", res);
return res;
}
/******************************************************************
* IEParseDisplayNameWithBCW (SHDOCVW.218)
*/
HRESULT WINAPI IEParseDisplayNameWithBCW(DWORD codepage, LPCWSTR lpszDisplayName, LPBC pbc, LPITEMIDLIST *ppidl)
{
/* Guessing at parameter 3 based on IShellFolder's ParseDisplayName */
FIXME("stub: 0x%x %s %p %p\n",codepage,debugstr_w(lpszDisplayName),pbc,ppidl);
return E_FAIL;
}