Commit ded8dd8b authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Forward IXMLDOMDocument methods to contained node.

parent c979bfcc
...@@ -190,8 +190,8 @@ static HRESULT WINAPI domdoc_get_parentNode( ...@@ -190,8 +190,8 @@ static HRESULT WINAPI domdoc_get_parentNode(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** parent ) IXMLDOMNode** parent )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_parentNode( This->node, parent );
} }
...@@ -199,8 +199,8 @@ static HRESULT WINAPI domdoc_get_childNodes( ...@@ -199,8 +199,8 @@ static HRESULT WINAPI domdoc_get_childNodes(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNodeList** childList ) IXMLDOMNodeList** childList )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_childNodes( This->node, childList );
} }
...@@ -208,8 +208,8 @@ static HRESULT WINAPI domdoc_get_firstChild( ...@@ -208,8 +208,8 @@ static HRESULT WINAPI domdoc_get_firstChild(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** firstChild ) IXMLDOMNode** firstChild )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_firstChild( This->node, firstChild );
} }
...@@ -217,8 +217,8 @@ static HRESULT WINAPI domdoc_get_lastChild( ...@@ -217,8 +217,8 @@ static HRESULT WINAPI domdoc_get_lastChild(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** lastChild ) IXMLDOMNode** lastChild )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_lastChild( This->node, lastChild );
} }
...@@ -226,8 +226,8 @@ static HRESULT WINAPI domdoc_get_previousSibling( ...@@ -226,8 +226,8 @@ static HRESULT WINAPI domdoc_get_previousSibling(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** previousSibling ) IXMLDOMNode** previousSibling )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_previousSibling( This->node, previousSibling );
} }
...@@ -235,8 +235,8 @@ static HRESULT WINAPI domdoc_get_nextSibling( ...@@ -235,8 +235,8 @@ static HRESULT WINAPI domdoc_get_nextSibling(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** nextSibling ) IXMLDOMNode** nextSibling )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nextSibling( This->node, nextSibling );
} }
...@@ -244,8 +244,8 @@ static HRESULT WINAPI domdoc_get_attributes( ...@@ -244,8 +244,8 @@ static HRESULT WINAPI domdoc_get_attributes(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNamedNodeMap** attributeMap ) IXMLDOMNamedNodeMap** attributeMap )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_attributes( This->node, attributeMap );
} }
...@@ -255,8 +255,8 @@ static HRESULT WINAPI domdoc_insertBefore( ...@@ -255,8 +255,8 @@ static HRESULT WINAPI domdoc_insertBefore(
VARIANT refChild, VARIANT refChild,
IXMLDOMNode** outNewChild ) IXMLDOMNode** outNewChild )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_insertBefore( This->node, newChild, refChild, outNewChild );
} }
...@@ -266,8 +266,8 @@ static HRESULT WINAPI domdoc_replaceChild( ...@@ -266,8 +266,8 @@ static HRESULT WINAPI domdoc_replaceChild(
IXMLDOMNode* oldChild, IXMLDOMNode* oldChild,
IXMLDOMNode** outOldChild) IXMLDOMNode** outOldChild)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_replaceChild( This->node, newChild, oldChild, outOldChild );
} }
...@@ -276,8 +276,8 @@ static HRESULT WINAPI domdoc_removeChild( ...@@ -276,8 +276,8 @@ static HRESULT WINAPI domdoc_removeChild(
IXMLDOMNode* childNode, IXMLDOMNode* childNode,
IXMLDOMNode** oldChild) IXMLDOMNode** oldChild)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_removeChild( This->node, childNode, oldChild );
} }
...@@ -286,8 +286,8 @@ static HRESULT WINAPI domdoc_appendChild( ...@@ -286,8 +286,8 @@ static HRESULT WINAPI domdoc_appendChild(
IXMLDOMNode* newChild, IXMLDOMNode* newChild,
IXMLDOMNode** outNewChild) IXMLDOMNode** outNewChild)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_appendChild( This->node, newChild, outNewChild );
} }
...@@ -295,8 +295,8 @@ static HRESULT WINAPI domdoc_hasChildNodes( ...@@ -295,8 +295,8 @@ static HRESULT WINAPI domdoc_hasChildNodes(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT_BOOL* hasChild) VARIANT_BOOL* hasChild)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_hasChildNodes( This->node, hasChild );
} }
...@@ -304,8 +304,8 @@ static HRESULT WINAPI domdoc_get_ownerDocument( ...@@ -304,8 +304,8 @@ static HRESULT WINAPI domdoc_get_ownerDocument(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMDocument** DOMDocument) IXMLDOMDocument** DOMDocument)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_ownerDocument( This->node, DOMDocument );
} }
...@@ -314,8 +314,8 @@ static HRESULT WINAPI domdoc_cloneNode( ...@@ -314,8 +314,8 @@ static HRESULT WINAPI domdoc_cloneNode(
VARIANT_BOOL deep, VARIANT_BOOL deep,
IXMLDOMNode** cloneRoot) IXMLDOMNode** cloneRoot)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_cloneNode( This->node, deep, cloneRoot );
} }
...@@ -323,8 +323,8 @@ static HRESULT WINAPI domdoc_get_nodeTypeString( ...@@ -323,8 +323,8 @@ static HRESULT WINAPI domdoc_get_nodeTypeString(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* nodeType ) BSTR* nodeType )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nodeTypeString( This->node, nodeType );
} }
...@@ -332,8 +332,8 @@ static HRESULT WINAPI domdoc_get_text( ...@@ -332,8 +332,8 @@ static HRESULT WINAPI domdoc_get_text(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* text ) BSTR* text )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_text( This->node, text );
} }
...@@ -341,8 +341,8 @@ static HRESULT WINAPI domdoc_put_text( ...@@ -341,8 +341,8 @@ static HRESULT WINAPI domdoc_put_text(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR text ) BSTR text )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_put_text( This->node, text );
} }
...@@ -350,8 +350,8 @@ static HRESULT WINAPI domdoc_get_specified( ...@@ -350,8 +350,8 @@ static HRESULT WINAPI domdoc_get_specified(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT_BOOL* isSpecified ) VARIANT_BOOL* isSpecified )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_specified( This->node, isSpecified );
} }
...@@ -359,8 +359,8 @@ static HRESULT WINAPI domdoc_get_definition( ...@@ -359,8 +359,8 @@ static HRESULT WINAPI domdoc_get_definition(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
IXMLDOMNode** definitionNode ) IXMLDOMNode** definitionNode )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_definition( This->node, definitionNode );
} }
...@@ -368,16 +368,16 @@ static HRESULT WINAPI domdoc_get_nodeTypedValue( ...@@ -368,16 +368,16 @@ static HRESULT WINAPI domdoc_get_nodeTypedValue(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT* typedValue ) VARIANT* typedValue )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nodeTypedValue( This->node, typedValue );
} }
static HRESULT WINAPI domdoc_put_nodeTypedValue( static HRESULT WINAPI domdoc_put_nodeTypedValue(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT typedValue ) VARIANT typedValue )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_put_nodeTypedValue( This->node, typedValue );
} }
...@@ -385,8 +385,8 @@ static HRESULT WINAPI domdoc_get_dataType( ...@@ -385,8 +385,8 @@ static HRESULT WINAPI domdoc_get_dataType(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT* dataTypeName ) VARIANT* dataTypeName )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_dataType( This->node, dataTypeName );
} }
...@@ -394,8 +394,8 @@ static HRESULT WINAPI domdoc_put_dataType( ...@@ -394,8 +394,8 @@ static HRESULT WINAPI domdoc_put_dataType(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR dataTypeName ) BSTR dataTypeName )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_put_dataType( This->node, dataTypeName );
} }
...@@ -403,8 +403,8 @@ static HRESULT WINAPI domdoc_get_xml( ...@@ -403,8 +403,8 @@ static HRESULT WINAPI domdoc_get_xml(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* xmlString ) BSTR* xmlString )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_xml( This->node, xmlString );
} }
...@@ -413,8 +413,8 @@ static HRESULT WINAPI domdoc_transformNode( ...@@ -413,8 +413,8 @@ static HRESULT WINAPI domdoc_transformNode(
IXMLDOMNode* styleSheet, IXMLDOMNode* styleSheet,
BSTR* xmlString ) BSTR* xmlString )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_transformNode( This->node, styleSheet, xmlString );
} }
...@@ -423,8 +423,8 @@ static HRESULT WINAPI domdoc_selectNodes( ...@@ -423,8 +423,8 @@ static HRESULT WINAPI domdoc_selectNodes(
BSTR queryString, BSTR queryString,
IXMLDOMNodeList** resultList ) IXMLDOMNodeList** resultList )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_selectNodes( This->node, queryString, resultList );
} }
...@@ -433,8 +433,8 @@ static HRESULT WINAPI domdoc_selectSingleNode( ...@@ -433,8 +433,8 @@ static HRESULT WINAPI domdoc_selectSingleNode(
BSTR queryString, BSTR queryString,
IXMLDOMNode** resultNode ) IXMLDOMNode** resultNode )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_selectSingleNode( This->node, queryString, resultNode );
} }
...@@ -442,8 +442,8 @@ static HRESULT WINAPI domdoc_get_parsed( ...@@ -442,8 +442,8 @@ static HRESULT WINAPI domdoc_get_parsed(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT_BOOL* isParsed ) VARIANT_BOOL* isParsed )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_parsed( This->node, isParsed );
} }
...@@ -451,8 +451,8 @@ static HRESULT WINAPI domdoc_get_namespaceURI( ...@@ -451,8 +451,8 @@ static HRESULT WINAPI domdoc_get_namespaceURI(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* namespaceURI ) BSTR* namespaceURI )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_namespaceURI( This->node, namespaceURI );
} }
...@@ -460,8 +460,8 @@ static HRESULT WINAPI domdoc_get_prefix( ...@@ -460,8 +460,8 @@ static HRESULT WINAPI domdoc_get_prefix(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* prefixString ) BSTR* prefixString )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_prefix( This->node, prefixString );
} }
...@@ -469,8 +469,8 @@ static HRESULT WINAPI domdoc_get_baseName( ...@@ -469,8 +469,8 @@ static HRESULT WINAPI domdoc_get_baseName(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* nameString ) BSTR* nameString )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_baseName( This->node, nameString );
} }
...@@ -479,8 +479,8 @@ static HRESULT WINAPI domdoc_transformNodeToObject( ...@@ -479,8 +479,8 @@ static HRESULT WINAPI domdoc_transformNodeToObject(
IXMLDOMNode* stylesheet, IXMLDOMNode* stylesheet,
VARIANT outputObject) VARIANT outputObject)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_transformNodeToObject( This->node, stylesheet, outputObject );
} }
......
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