Module: wine Branch: master Commit: b57a7e01d6fed42cf767881958c0832390d2da18 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b57a7e01d6fed42cf767881958...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Jan 14 15:35:02 2008 +1100
msxml3: Implement GetClassID for XMLDocument IPersistStream interface.
---
dlls/msxml3/domdoc.c | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 15772e5..b294eed 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -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(