Fixed msxml compilation when libxml2 is not available.

This commit is contained in:
Jacek Caban 2005-08-08 18:01:52 +00:00 committed by Alexandre Julliard
parent 7eb982a48d
commit 0c206b940c
1 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(msxml);
#ifdef HAVE_LIBXML2
typedef struct _xmlnodemap
{
const struct IXMLDOMNamedNodeMapVtbl *lpVtbl;
@ -279,3 +281,5 @@ HRESULT NodeMap_create( IXMLDOMNamedNodeMap** DomNamedNodeMap, xmlDocPtr xmldoc,
return S_OK;
}
#endif