urlmon: Added Uri IPersistStream_GetClassID implementation.

This commit is contained in:
Piotr Caban 2012-01-13 14:30:38 +01:00 committed by Alexandre Julliard
parent 18f932cd1c
commit 28e95dfbed
1 changed files with 7 additions and 2 deletions

View File

@ -5137,8 +5137,13 @@ static ULONG WINAPI PersistStream_Release(IPersistStream *iface)
static HRESULT WINAPI PersistStream_GetClassID(IPersistStream *iface, CLSID *pClassID)
{
Uri *This = impl_from_IPersistStream(iface);
FIXME("(%p)->(%p)\n", This, pClassID);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, pClassID);
if(!pClassID)
return E_INVALIDARG;
*pClassID = CLSID_CUri;
return S_OK;
}
static HRESULT WINAPI PersistStream_IsDirty(IPersistStream *iface)