Commit a71fb845 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shdocvw: Add DoFileDownload stub.

parent a2f864ca
......@@ -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;
}
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