Module: wine Branch: master Commit: 141155e74cc940015f3ed107ea1e5793c0baaf9b URL: https://source.winehq.org/git/wine.git/?a=commit;h=141155e74cc940015f3ed107e...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Aug 19 17:29:04 2021 +0300
msxml3: Do not depend on libxml2 for legacy IXMLParser object stub.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msxml3/xmlparser.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 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 <stdarg.h> -#ifdef HAVE_LIBXML2 -# include <libxml/parser.h> -# include <libxml/xmlerror.h> -# include <libxml/HTMLtree.h> -#endif - -#include "windef.h" -#include "winbase.h" -#include "winuser.h" -#include "ole2.h" -#include "msxml6.h"
-#include "msxml_private.h" +#include "ole2.h"
#include "initguid.h" #include "xmlparser.h"
#include "wine/debug.h" +#include "wine/heap.h"
WINE_DEFAULT_DEBUG_CHANNEL(msxml);