mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
msxml3: Remove unused functions.
This commit is contained in:
parent
661218267a
commit
7786576525
3 changed files with 0 additions and 15 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue