From 141155e74cc940015f3ed107ea1e5793c0baaf9b Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Thu, 19 Aug 2021 17:29:04 +0300 Subject: [PATCH] msxml3: Do not depend on libxml2 for legacy IXMLParser object stub. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- dlls/msxml3/xmlparser.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/dlls/msxml3/xmlparser.c b/dlls/msxml3/xmlparser.c index 6fcdb82c56b..0fcb9e34340 100644 --- a/dlls/msxml3/xmlparser.c +++ b/dlls/msxml3/xmlparser.c @@ -19,27 +19,15 @@ */ #define COBJMACROS -#include "config.h" - #include -#ifdef HAVE_LIBXML2 -# include -# include -# include -#endif -#include "windef.h" -#include "winbase.h" -#include "winuser.h" #include "ole2.h" -#include "msxml6.h" - -#include "msxml_private.h" #include "initguid.h" #include "xmlparser.h" #include "wine/debug.h" +#include "wine/heap.h" WINE_DEFAULT_DEBUG_CHANNEL(msxml);