shdocvw: Add stub for SHRestricted2W.
This commit is contained in:
parent
797ec7a58e
commit
a4c1c66c87
|
@ -41,7 +41,7 @@
|
|||
152 stub -noname CShellUIHelper_CreateInstance2
|
||||
153 stub -noname IsURLChild
|
||||
158 stub -noname SHRestricted2A
|
||||
159 stub -noname SHRestricted2W
|
||||
159 stdcall -noname SHRestricted2W(long wstr long)
|
||||
160 stub -noname SHIsRestricted2W
|
||||
161 stub @ # CSearchAssistantOC::OnDraw
|
||||
162 stub -noname CDDEAuto_Navigate
|
||||
|
|
|
@ -406,3 +406,12 @@ HRESULT WINAPI IEParseDisplayNameWithBCW(DWORD codepage, LPCWSTR lpszDisplayName
|
|||
FIXME("stub: 0x%x %s %p %p\n",codepage,debugstr_w(lpszDisplayName),pbc,ppidl);
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* SHRestricted2W (SHDOCVW.159)
|
||||
*/
|
||||
DWORD WINAPI SHRestricted2W(DWORD res, LPCWSTR url, DWORD reserved)
|
||||
{
|
||||
FIXME("(%d %s %d) stub\n", res, debugstr_w(url), reserved);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue