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
3b5c2221
Commit
3b5c2221
authored
Aug 03, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented the IXMLDOMElement interface.
parent
2be395db
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
4 deletions
+14
-4
Makefile.in
dlls/msxml3/Makefile.in
+1
-0
domdoc.c
dlls/msxml3/domdoc.c
+5
-4
element.c
dlls/msxml3/element.c
+0
-0
msxml_private.h
dlls/msxml3/msxml_private.h
+8
-0
No files found.
dlls/msxml3/Makefile.in
View file @
3b5c2221
...
...
@@ -10,6 +10,7 @@ EXTRAINCL = @XML2INCL@
C_SRCS
=
\
domdoc.c
\
element.c
\
factory.c
\
main.c
...
...
dlls/msxml3/domdoc.c
View file @
3b5c2221
...
...
@@ -39,8 +39,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
#ifdef HAVE_LIBXML2
#include <libxml/parser.h>
typedef
struct
_domdoc
{
const
struct
IXMLDOMDocumentVtbl
*
lpVtbl
;
...
...
@@ -501,8 +499,11 @@ static HRESULT WINAPI domdoc_get_documentElement(
IXMLDOMDocument
*
iface
,
IXMLDOMElement
**
DOMElement
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
domdoc
*
This
=
impl_from_IXMLDOMDocument
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
DOMElement_create
(
DOMElement
,
This
->
xmldoc
);
}
...
...
dlls/msxml3/element.c
0 → 100644
View file @
3b5c2221
This diff is collapsed.
Click to expand it.
dlls/msxml3/msxml_private.h
View file @
3b5c2221
...
...
@@ -21,6 +21,14 @@
#ifndef __MSXML_PRIVATE__
#define __MSXML_PRIVATE__
#ifdef HAVE_LIBXML_PARSER_H
#include <libxml/parser.h>
extern
HRESULT
DOMElement_create
(
IXMLDOMElement
**
DOMElement
,
xmlDocPtr
xmldoc
);
#endif
extern
HRESULT
DOMDocument_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
#endif
/* __MSXML_PRIVATE__ */
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