Module: wine Branch: master Commit: 0fece8d99e0b9ae8e4d43d205dd289ec522188b1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=0fece8d99e0b9ae8e4d43d205...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Aug 19 17:29:05 2021 +0300
msxml3: Do not depend on libxml2 for parser error object.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msxml3/parseerror.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/dlls/msxml3/parseerror.c b/dlls/msxml3/parseerror.c index 2ca0885708d..9fb3ceca9c3 100644 --- a/dlls/msxml3/parseerror.c +++ b/dlls/msxml3/parseerror.c @@ -21,22 +21,12 @@
#define COBJMACROS
-#include "config.h" - #include <stdarg.h> -#ifdef HAVE_LIBXML2 -# include <libxml/parser.h> -# include <libxml/xmlerror.h> -#endif - -#include "windef.h" -#include "winbase.h" -#include "winerror.h" -#include "winuser.h" + #include "ole2.h" #include "msxml6.h"
-#include "msxml_private.h" +#include "msxml_dispex.h"
#include "wine/debug.h"