Commit d404ff9c authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Added InstallReg_RunDLL stub.

parent f26874c5
......@@ -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)
......
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment