shdocvw: Added ResetProfileSharing stub.

This commit is contained in:
Jacek Caban 2014-06-26 11:35:30 +02:00 committed by Alexandre Julliard
parent 258942f28f
commit bf2d38fbc1
2 changed files with 10 additions and 1 deletions

View File

@ -46,7 +46,7 @@
161 stub @ # CSearchAssistantOC::OnDraw 161 stub @ # CSearchAssistantOC::OnDraw
162 stub -noname CDDEAuto_Navigate 162 stub -noname CDDEAuto_Navigate
163 stub SHAddSubscribeFavorite 163 stub SHAddSubscribeFavorite
164 stub -noname ResetProfileSharing 164 stdcall -noname ResetProfileSharing(long)
165 stub -noname URLSubstitution 165 stub -noname URLSubstitution
167 stub -noname IsIEDefaultBrowser 167 stub -noname IsIEDefaultBrowser
169 stdcall -noname ParseURLFromOutsideSourceA(str ptr ptr ptr) 169 stdcall -noname ParseURLFromOutsideSourceA(str ptr ptr ptr)

View File

@ -533,3 +533,12 @@ BOOL WINAPI ImportPrivacySettings(LPCWSTR filename, BOOL *pGlobalPrefs, BOOL * p
return TRUE; return TRUE;
} }
/******************************************************************
* ResetProfileSharing (SHDOCVW.164)
*/
HRESULT WINAPI ResetProfileSharing(HWND hwnd)
{
FIXME("(%p) stub\n", hwnd);
return E_NOTIMPL;
}