From 7786576525715452039363f8dec4742e82d3a60f Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 13 Jan 2007 20:44:56 +0000 Subject: [PATCH] msxml3: Remove unused functions. --- dlls/msxml3/attribute.c | 5 ----- dlls/msxml3/comment.c | 5 ----- dlls/msxml3/pi.c | 5 ----- 3 files changed, 15 deletions(-) diff --git a/dlls/msxml3/attribute.c b/dlls/msxml3/attribute.c index 3ef1521783d..689829996f1 100644 --- a/dlls/msxml3/attribute.c +++ b/dlls/msxml3/attribute.c @@ -50,11 +50,6 @@ static inline domattr *impl_from_IXMLDOMAttribute( IXMLDOMAttribute *iface ) return (domattr *)((char*)iface - FIELD_OFFSET(domattr, lpVtbl)); } -static inline xmlNodePtr get_attribute( domattr *This ) -{ - return xmlNodePtr_from_domnode( This->node, XML_ATTRIBUTE_NODE ); -} - static HRESULT WINAPI domattr_QueryInterface( IXMLDOMAttribute *iface, REFIID riid, diff --git a/dlls/msxml3/comment.c b/dlls/msxml3/comment.c index 4515dbda6fb..f9fc927923d 100644 --- a/dlls/msxml3/comment.c +++ b/dlls/msxml3/comment.c @@ -50,11 +50,6 @@ static inline domcomment *impl_from_IXMLDOMComment( IXMLDOMComment *iface ) return (domcomment *)((char*)iface - FIELD_OFFSET(domcomment, lpVtbl)); } -static inline xmlNodePtr get_comment( domcomment *This ) -{ - return xmlNodePtr_from_domnode( This->node, XML_COMMENT_NODE ); -} - static HRESULT WINAPI domcomment_QueryInterface( IXMLDOMComment *iface, REFIID riid, diff --git a/dlls/msxml3/pi.c b/dlls/msxml3/pi.c index 148b8aef87c..3f997e2280b 100644 --- a/dlls/msxml3/pi.c +++ b/dlls/msxml3/pi.c @@ -50,11 +50,6 @@ static inline dom_pi *impl_from_IXMLDOMProcessingInstruction( IXMLDOMProcessingI return (dom_pi *)((char*)iface - FIELD_OFFSET(dom_pi, lpVtbl)); } -static inline xmlNodePtr get_pi( dom_pi *This ) -{ - return xmlNodePtr_from_domnode( This->node, XML_PI_NODE ); -} - static HRESULT WINAPI dom_pi_QueryInterface( IXMLDOMProcessingInstruction *iface, REFIID riid,