Fixed msxml compilation when libxml is not available.
This commit is contained in:
parent
950a23e849
commit
049e9b6718
|
@ -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
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifndef __MSXML_PRIVATE__
|
||||
#define __MSXML_PRIVATE__
|
||||
|
||||
#ifdef HAVE_LIBXML_PARSER_H
|
||||
#ifdef HAVE_LIBXML2
|
||||
|
||||
#include <libxml/parser.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue