shdocvw: Add stub for SHRestricted2W.

oldstable
Stefan Leichter 2009-08-07 11:48:09 +02:00 committed by Alexandre Julliard
parent 797ec7a58e
commit a4c1c66c87
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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;
}