Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f48d1f79
Commit
f48d1f79
authored
Aug 17, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Do not depend on libxml2 for XMLVIEW object.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d09e450
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
20 deletions
+2
-20
xmlview.c
dlls/msxml3/xmlview.c
+2
-20
No files found.
dlls/msxml3/xmlview.c
View file @
f48d1f79
...
@@ -16,17 +16,11 @@
...
@@ -16,17 +16,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include "config.h"
#include <stdarg.h>
#include <stdarg.h>
#define COBJMACROS
#define COBJMACROS
#define NONAMELESSUNION
#define NONAMELESSUNION
#ifdef HAVE_LIBXML2
#include <libxml/parser.h>
#endif
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "ole2.h"
#include "ole2.h"
...
@@ -37,10 +31,9 @@
...
@@ -37,10 +31,9 @@
#include "docobj.h"
#include "docobj.h"
#include "wine/debug.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "msxml_private.h"
#include "msxml_dispex.h"
#ifdef HAVE_LIBXML2
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
...
@@ -1451,14 +1444,3 @@ HRESULT XMLView_create(void **ppObj)
...
@@ -1451,14 +1444,3 @@ HRESULT XMLView_create(void **ppObj)
*
ppObj
=
&
This
->
IPersistMoniker_iface
;
*
ppObj
=
&
This
->
IPersistMoniker_iface
;
return
S_OK
;
return
S_OK
;
}
}
#else
HRESULT
XMLView_create
(
void
**
ppObj
)
{
MESSAGE
(
"This program tried to use a XMLView object, but
\n
"
"libxml2 support was not present at compile time.
\n
"
);
return
E_NOTIMPL
;
}
#endif
/* HAVE_LIBXML2 */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment