Fixed msxml compilation when libxml is not available.

This commit is contained in:
Jacek Caban 2005-08-08 12:13:31 +00:00 committed by Alexandre Julliard
parent 950a23e849
commit 049e9b6718
2 changed files with 5 additions and 1 deletions

View File

@ -38,6 +38,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(msxml);
#ifdef HAVE_LIBXML2
typedef struct _domelem
{
const struct IXMLDOMElementVtbl *lpVtbl;
@ -566,3 +568,5 @@ HRESULT DOMElement_create( IXMLDOMElement** DOMElement, xmlDocPtr xmldoc )
return S_OK;
}
#endif

View File

@ -21,7 +21,7 @@
#ifndef __MSXML_PRIVATE__
#define __MSXML_PRIVATE__
#ifdef HAVE_LIBXML_PARSER_H
#ifdef HAVE_LIBXML2
#include <libxml/parser.h>