Module: wine Branch: master Commit: b7aec2a215992a9abe613a1e36146f5e002908f5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b7aec2a215992a9abe613a1e36...
Author: André Hentschel nerv@dawncrow.de Date: Tue Mar 30 19:56:44 2010 +0200
msxml3: Make xmlnode_get_specified a stub.
---
dlls/msxml3/node.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index 9106a9f..e263a2a 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -934,8 +934,9 @@ static HRESULT WINAPI xmlnode_get_specified( VARIANT_BOOL* isSpecified) { xmlnode *This = impl_from_IXMLDOMNode( iface ); - FIXME("(%p)->(%p)\n", This, isSpecified); - return E_NOTIMPL; + FIXME("(%p)->(%p) stub!\n", This, isSpecified); + *isSpecified = VARIANT_TRUE; + return S_OK; }
static HRESULT WINAPI xmlnode_get_definition(