shdocvw: Added InstallReg_RunDLL stub.

This commit is contained in:
Jacek Caban 2014-06-27 11:40:20 +02:00 committed by Alexandre Julliard
parent f26874c523
commit d404ff9ce8
2 changed files with 9 additions and 1 deletions

View file

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

View file

@ -542,3 +542,11 @@ 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);
}