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
ef23ab47
Commit
ef23ab47
authored
Jan 18, 2006
by
Huw Davies
Committed by
Alexandre Julliard
Jan 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml: Add attribute node implementation.
parent
71908c41
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
Makefile.in
dlls/msxml3/Makefile.in
+1
-0
attribute.c
dlls/msxml3/attribute.c
+0
-0
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-0
node.c
dlls/msxml3/node.c
+3
-0
No files found.
dlls/msxml3/Makefile.in
View file @
ef23ab47
...
...
@@ -9,6 +9,7 @@ EXTRALIBS = -luuid $(LIBUNICODE) @XML2LIBS@ @XSLTLIBS@
EXTRAINCL
=
@XML2INCL@ @XSLTINCL@
C_SRCS
=
\
attribute.c
\
domdoc.c
\
element.c
\
factory.c
\
...
...
dlls/msxml3/attribute.c
0 → 100644
View file @
ef23ab47
This diff is collapsed.
Click to expand it.
dlls/msxml3/msxml_private.h
View file @
ef23ab47
...
...
@@ -32,6 +32,7 @@ extern IUnknown *create_domdoc( void );
extern
IUnknown
*
create_xmldoc
(
void
);
extern
IXMLDOMNode
*
create_node
(
xmlNodePtr
node
);
extern
IUnknown
*
create_basic_node
(
xmlNodePtr
node
,
IUnknown
*
pUnkOuter
);
extern
IUnknown
*
create_attribute
(
xmlNodePtr
attribute
);
extern
IUnknown
*
create_element
(
xmlNodePtr
element
);
extern
IXMLDOMNodeList
*
create_nodelist
(
xmlNodePtr
node
);
extern
IXMLDOMNamedNodeMap
*
create_nodemap
(
IXMLDOMNode
*
node
);
...
...
dlls/msxml3/node.c
View file @
ef23ab47
...
...
@@ -852,6 +852,9 @@ IXMLDOMNode *create_node( xmlNodePtr node )
TRACE
(
"type %d
\n
"
,
node
->
type
);
switch
(
node
->
type
)
{
case
XML_ATTRIBUTE_NODE
:
pUnk
=
create_attribute
(
node
);
break
;
case
XML_ELEMENT_NODE
:
pUnk
=
create_element
(
node
);
break
;
...
...
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