Commit e55ed113 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

shdocvw: Return S_OK in PersistStorage_InitNew.

parent 7b89ff88
...@@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_InitNew(IPersistStorage *iface, LPSTORAGE p ...@@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_InitNew(IPersistStorage *iface, LPSTORAGE p
{ {
WebBrowser *This = PERSTORAGE_THIS(iface); WebBrowser *This = PERSTORAGE_THIS(iface);
FIXME("(%p)->(%p)\n", This, pStg); FIXME("(%p)->(%p)\n", This, pStg);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI PersistStorage_Load(IPersistStorage *iface, LPSTORAGE pStg) static HRESULT WINAPI PersistStorage_Load(IPersistStorage *iface, LPSTORAGE pStg)
......
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