shdocvw: Add DoFileDownload stub.

oldstable
Austin English 2015-02-04 21:11:46 -06:00 committed by Alexandre Julliard
parent a2f864cac8
commit a71fb845cd
2 changed files with 10 additions and 1 deletions

View File

@ -111,7 +111,7 @@
@ stdcall -private DllUnregisterServer()
@ stub DoAddToFavDlg
@ stub DoAddToFavDlgW
@ stub DoFileDownload
@ stdcall DoFileDownload(wstr)
@ stub DoFileDownloadEx
@ stub DoOrganizeFavDlg
@ stub DoOrganizeFavDlgW

View File

@ -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;
}