msxml3: Remove unused xmlnode_* functions.

This commit is contained in:
Jacek Caban 2010-10-24 22:54:46 +02:00 committed by Alexandre Julliard
parent 0fda52b8d7
commit 16647d42db
1 changed files with 22 additions and 214 deletions

View File

@ -110,74 +110,6 @@ static inline xmlnode *impl_from_IXMLDOMNode( IXMLDOMNode *iface )
return (xmlnode *)((char*)iface - FIELD_OFFSET(xmlnode, lpVtbl)); return (xmlnode *)((char*)iface - FIELD_OFFSET(xmlnode, lpVtbl));
} }
static HRESULT WINAPI xmlnode_QueryInterface(
IXMLDOMNode *iface,
REFIID riid,
void** ppvObject )
{
ERR("Should not be called\n");
return E_NOINTERFACE;
}
static ULONG WINAPI xmlnode_AddRef(
IXMLDOMNode *iface )
{
ERR("Should not be called\n");
return 2;
}
static ULONG WINAPI xmlnode_Release(
IXMLDOMNode *iface )
{
ERR("Should not be called\n");
return 1;
}
static HRESULT WINAPI xmlnode_GetTypeInfoCount(
IXMLDOMNode *iface,
UINT* pctinfo )
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_GetTypeInfo(
IXMLDOMNode *iface,
UINT iTInfo,
LCID lcid,
ITypeInfo** ppTInfo )
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_GetIDsOfNames(
IXMLDOMNode *iface,
REFIID riid,
LPOLESTR* rgszNames,
UINT cNames,
LCID lcid,
DISPID* rgDispId )
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_Invoke(
IXMLDOMNode *iface,
DISPID dispIdMember,
REFIID riid,
LCID lcid,
WORD wFlags,
DISPPARAMS* pDispParams,
VARIANT* pVarResult,
EXCEPINFO* pExcepInfo,
UINT* puArgErr )
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_nodeName(xmlnode *This, BSTR *name) HRESULT node_get_nodeName(xmlnode *This, BSTR *name)
{ {
if (!name) if (!name)
@ -190,14 +122,6 @@ HRESULT node_get_nodeName(xmlnode *This, BSTR *name)
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_get_nodeName(
IXMLDOMNode *iface,
BSTR* name)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_content(xmlnode *This, VARIANT *value) HRESULT node_get_content(xmlnode *This, VARIANT *value)
{ {
xmlChar *content; xmlChar *content;
@ -214,14 +138,6 @@ HRESULT node_get_content(xmlnode *This, VARIANT *value)
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_get_nodeValue(
IXMLDOMNode *iface,
VARIANT* value)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_put_value(xmlnode *This, VARIANT *value) HRESULT node_put_value(xmlnode *This, VARIANT *value)
{ {
VARIANT string_value; VARIANT string_value;
@ -243,22 +159,6 @@ HRESULT node_put_value(xmlnode *This, VARIANT *value)
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_put_nodeValue(
IXMLDOMNode *iface,
VARIANT value)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_get_nodeType(
IXMLDOMNode *iface,
DOMNodeType* type)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT get_node( static HRESULT get_node(
xmlnode *This, xmlnode *This,
const char *name, const char *name,
@ -285,14 +185,6 @@ HRESULT node_get_parent(xmlnode *This, IXMLDOMNode **parent)
return get_node( This, "parent", This->node->parent, parent ); return get_node( This, "parent", This->node->parent, parent );
} }
static HRESULT WINAPI xmlnode_get_parentNode(
IXMLDOMNode *iface,
IXMLDOMNode** parent)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_child_nodes(xmlnode *This, IXMLDOMNodeList **ret) HRESULT node_get_child_nodes(xmlnode *This, IXMLDOMNodeList **ret)
{ {
if(!ret) if(!ret)
@ -305,74 +197,26 @@ HRESULT node_get_child_nodes(xmlnode *This, IXMLDOMNodeList **ret)
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_get_childNodes(
IXMLDOMNode *iface,
IXMLDOMNodeList** childList)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_first_child(xmlnode *This, IXMLDOMNode **ret) HRESULT node_get_first_child(xmlnode *This, IXMLDOMNode **ret)
{ {
return get_node(This, "firstChild", This->node->children, ret); return get_node(This, "firstChild", This->node->children, ret);
} }
static HRESULT WINAPI xmlnode_get_firstChild(
IXMLDOMNode *iface,
IXMLDOMNode** firstChild)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_last_child(xmlnode *This, IXMLDOMNode **ret) HRESULT node_get_last_child(xmlnode *This, IXMLDOMNode **ret)
{ {
return get_node(This, "lastChild", This->node->last, ret); return get_node(This, "lastChild", This->node->last, ret);
} }
static HRESULT WINAPI xmlnode_get_lastChild(
IXMLDOMNode *iface,
IXMLDOMNode** lastChild)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_previous_sibling(xmlnode *This, IXMLDOMNode **ret) HRESULT node_get_previous_sibling(xmlnode *This, IXMLDOMNode **ret)
{ {
return get_node(This, "previous", This->node->prev, ret); return get_node(This, "previous", This->node->prev, ret);
} }
static HRESULT WINAPI xmlnode_get_previousSibling(
IXMLDOMNode *iface,
IXMLDOMNode** previousSibling)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_get_next_sibling(xmlnode *This, IXMLDOMNode **ret) HRESULT node_get_next_sibling(xmlnode *This, IXMLDOMNode **ret)
{ {
return get_node(This, "next", This->node->next, ret); return get_node(This, "next", This->node->next, ret);
} }
static HRESULT WINAPI xmlnode_get_nextSibling(
IXMLDOMNode *iface,
IXMLDOMNode** nextSibling)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_get_attributes(
IXMLDOMNode *iface,
IXMLDOMNamedNodeMap** attributeMap)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_insert_before(xmlnode *This, IXMLDOMNode *new_child, const VARIANT *ref_child, HRESULT node_insert_before(xmlnode *This, IXMLDOMNode *new_child, const VARIANT *ref_child,
IXMLDOMNode **ret) IXMLDOMNode **ret)
{ {
@ -440,16 +284,6 @@ HRESULT node_insert_before(xmlnode *This, IXMLDOMNode *new_child, const VARIANT
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_insertBefore(
IXMLDOMNode *iface,
IXMLDOMNode* newChild,
VARIANT refChild,
IXMLDOMNode** outNewChild)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
HRESULT node_replace_child(xmlnode *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild, HRESULT node_replace_child(xmlnode *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild,
IXMLDOMNode **ret) IXMLDOMNode **ret)
{ {
@ -514,16 +348,6 @@ HRESULT node_replace_child(xmlnode *This, IXMLDOMNode *newChild, IXMLDOMNode *ol
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_replaceChild(
IXMLDOMNode *iface,
IXMLDOMNode* newChild,
IXMLDOMNode* oldChild,
IXMLDOMNode** outOldChild)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_removeChild( static HRESULT WINAPI xmlnode_removeChild(
IXMLDOMNode *iface, IXMLDOMNode *iface,
IXMLDOMNode* childNode, IXMLDOMNode* childNode,
@ -763,14 +587,6 @@ HRESULT node_put_text(xmlnode *This, BSTR text)
return S_OK; return S_OK;
} }
static HRESULT WINAPI xmlnode_put_text(
IXMLDOMNode *iface,
BSTR text)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_get_specified( static HRESULT WINAPI xmlnode_get_specified(
IXMLDOMNode *iface, IXMLDOMNode *iface,
VARIANT_BOOL* isSpecified) VARIANT_BOOL* isSpecified)
@ -1013,14 +829,6 @@ static HRESULT WINAPI xmlnode_put_nodeTypedValue(
return E_NOTIMPL; return E_NOTIMPL;
} }
static HRESULT WINAPI xmlnode_get_dataType(
IXMLDOMNode *iface,
VARIANT* dataTypeName)
{
ERR("Should not be called\n");
return E_NOTIMPL;
}
static HRESULT WINAPI xmlnode_put_dataType( static HRESULT WINAPI xmlnode_put_dataType(
IXMLDOMNode *iface, IXMLDOMNode *iface,
BSTR dataTypeName) BSTR dataTypeName)
@ -1460,26 +1268,26 @@ static HRESULT WINAPI xmlnode_transformNodeToObject(
static const struct IXMLDOMNodeVtbl xmlnode_vtbl = static const struct IXMLDOMNodeVtbl xmlnode_vtbl =
{ {
xmlnode_QueryInterface, NULL,
xmlnode_AddRef, NULL,
xmlnode_Release, NULL,
xmlnode_GetTypeInfoCount, NULL,
xmlnode_GetTypeInfo, NULL,
xmlnode_GetIDsOfNames, NULL,
xmlnode_Invoke, NULL,
xmlnode_get_nodeName, NULL,
xmlnode_get_nodeValue, NULL,
xmlnode_put_nodeValue, NULL,
xmlnode_get_nodeType, NULL,
xmlnode_get_parentNode, NULL,
xmlnode_get_childNodes, NULL,
xmlnode_get_firstChild, NULL,
xmlnode_get_lastChild, NULL,
xmlnode_get_previousSibling, NULL,
xmlnode_get_nextSibling, NULL,
xmlnode_get_attributes, NULL,
xmlnode_insertBefore, NULL,
xmlnode_replaceChild, NULL,
xmlnode_removeChild, xmlnode_removeChild,
xmlnode_appendChild, xmlnode_appendChild,
xmlnode_hasChildNodes, xmlnode_hasChildNodes,
@ -1487,12 +1295,12 @@ static const struct IXMLDOMNodeVtbl xmlnode_vtbl =
xmlnode_cloneNode, xmlnode_cloneNode,
xmlnode_get_nodeTypeString, xmlnode_get_nodeTypeString,
xmlnode_get_text, xmlnode_get_text,
xmlnode_put_text, NULL,
xmlnode_get_specified, xmlnode_get_specified,
xmlnode_get_definition, xmlnode_get_definition,
xmlnode_get_nodeTypedValue, xmlnode_get_nodeTypedValue,
xmlnode_put_nodeTypedValue, xmlnode_put_nodeTypedValue,
xmlnode_get_dataType, NULL,
xmlnode_put_dataType, xmlnode_put_dataType,
xmlnode_get_xml, xmlnode_get_xml,
xmlnode_transformNode, xmlnode_transformNode,