mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[SHDOCVW]
* Sync with Wine 1.7.27. CORE-8540 svn path=/trunk/; revision=64603
This commit is contained in:
parent
ef7f2727a3
commit
35fbb57c8f
3 changed files with 20 additions and 3 deletions
|
@ -46,7 +46,7 @@
|
|||
161 stub shdocvw_161 # CSearchAssistantOC::OnDraw
|
||||
162 stub -noname CDDEAuto_Navigate
|
||||
163 stub SHAddSubscribeFavorite
|
||||
164 stub -noname ResetProfileSharing
|
||||
164 stdcall -noname ResetProfileSharing(long)
|
||||
165 stub -noname URLSubstitution
|
||||
167 stub -noname IsIEDefaultBrowser
|
||||
169 stdcall -noname ParseURLFromOutsideSourceA(str ptr ptr ptr)
|
||||
|
@ -121,7 +121,7 @@
|
|||
@ stub IEAboutBox
|
||||
@ stub IEWriteErrorLog
|
||||
@ stdcall ImportPrivacySettings(wstr ptr ptr)
|
||||
@ stub InstallReg_RunDLL
|
||||
@ stdcall InstallReg_RunDLL(long long str long)
|
||||
@ stdcall OpenURL(long long str long) ieframe.OpenURL
|
||||
@ stub SHGetIDispatchForFolder
|
||||
@ stdcall SetQueryNetSessionCount(long)
|
||||
|
|
|
@ -519,3 +519,20 @@ BOOL WINAPI ImportPrivacySettings(LPCWSTR filename, BOOL *pGlobalPrefs, BOOL * p
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* ResetProfileSharing (SHDOCVW.164)
|
||||
*/
|
||||
HRESULT WINAPI ResetProfileSharing(HWND hwnd)
|
||||
{
|
||||
FIXME("(%p) stub\n", hwnd);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* InstallReg_RunDLL (SHDOCVW.@)
|
||||
*/
|
||||
void WINAPI InstallReg_RunDLL(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT show)
|
||||
{
|
||||
FIXME("(%p %p %s %x)\n", hwnd, handle, debugstr_a(cmdline), show);
|
||||
}
|
||||
|
|
|
@ -182,7 +182,7 @@ reactos/dll/win32/security # Forked (different .spec)
|
|||
reactos/dll/win32/sensapi # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/setupapi # Forked at Wine-20050524
|
||||
reactos/dll/win32/shdoclc # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/shdocvw # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/shdocvw # Synced to Wine-1.7.27
|
||||
reactos/dll/win32/shell32 # Forked at Wine-20071011
|
||||
reactos/dll/win32/shfolder # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/shlwapi # Synced to Wine-1.7.27
|
||||
|
|
Loading…
Reference in a new issue