Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
58fe32e1
Commit
58fe32e1
authored
Mar 16, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Avoid building code that isn't used without libxml.
parent
cd454fdc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
xmlview.c
dlls/msxml3/xmlview.c
+6
-2
No files found.
dlls/msxml3/xmlview.c
View file @
58fe32e1
...
...
@@ -42,6 +42,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
#ifdef HAVE_LIBXML2
typedef
struct
{
IPersistMoniker
IPersistMoniker_iface
;
...
...
@@ -1422,7 +1424,6 @@ static IOleObjectVtbl XMLView_OleObjectVtbl = {
XMLView_OleObject_SetColorScheme
};
#ifdef HAVE_LIBXML2
HRESULT
XMLView_create
(
IUnknown
*
outer
,
void
**
ppObj
)
{
XMLView
*
This
;
...
...
@@ -1453,11 +1454,14 @@ HRESULT XMLView_create(IUnknown *outer, void **ppObj)
*
ppObj
=
&
This
->
IPersistMoniker_iface
;
return
S_OK
;
}
#else
HRESULT
XMLView_create
(
IUnknown
*
outer
,
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
#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