shdocvw: Add DoFileDownload stub.
This commit is contained in:
parent
a2f864cac8
commit
a71fb845cd
|
@ -111,7 +111,7 @@
|
|||
@ stdcall -private DllUnregisterServer()
|
||||
@ stub DoAddToFavDlg
|
||||
@ stub DoAddToFavDlgW
|
||||
@ stub DoFileDownload
|
||||
@ stdcall DoFileDownload(wstr)
|
||||
@ stub DoFileDownloadEx
|
||||
@ stub DoOrganizeFavDlg
|
||||
@ stub DoOrganizeFavDlgW
|
||||
|
|
|
@ -550,3 +550,12 @@ void WINAPI InstallReg_RunDLL(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT s
|
|||
{
|
||||
FIXME("(%p %p %s %x)\n", hwnd, handle, debugstr_a(cmdline), show);
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* DoFileDownload (SHDOCVW.@)
|
||||
*/
|
||||
BOOL WINAPI DoFileDownload(LPWSTR filename)
|
||||
{
|
||||
FIXME("(%s) stub\n", debugstr_w(filename));
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue