Commit b57a7e01 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msxml3: Implement GetClassID for XMLDocument IPersistStream interface.

parent b9e9e041
......@@ -246,8 +246,14 @@ static ULONG WINAPI xmldoc_IPersistStream_Release(
static HRESULT WINAPI xmldoc_IPersistStream_GetClassID(
IPersistStream *iface, CLSID *classid)
{
FIXME("(%p,%p): stub!\n", iface, classid);
return E_NOTIMPL;
TRACE("(%p,%p): stub!\n", iface, classid);
if(!classid)
return E_POINTER;
*classid = CLSID_DOMDocument2;
return S_OK;
}
static HRESULT WINAPI xmldoc_IPersistStream_IsDirty(
......
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