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
bfceaa4f
Commit
bfceaa4f
authored
Jun 15, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmllite/writer: Implement WriteFullEndElement().
parent
8436b58e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
writer.c
dlls/xmllite/writer.c
+13
-2
No files found.
dlls/xmllite/writer.c
View file @
bfceaa4f
...
...
@@ -675,10 +675,21 @@ static HRESULT WINAPI xmlwriter_WriteEntityRef(IXmlWriter *iface, LPCWSTR pwszNa
static
HRESULT
WINAPI
xmlwriter_WriteFullEndElement
(
IXmlWriter
*
iface
)
{
xmlwriter
*
This
=
impl_from_IXmlWriter
(
iface
);
struct
element
*
element
;
FIXM
E
(
"%p
\n
"
,
This
);
TRAC
E
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
element
=
pop_element
(
This
);
if
(
!
element
)
return
WR_E_INVALIDACTION
;
/* write full end tag */
write_output_buffer
(
This
->
output
,
closeelementW
,
ARRAY_SIZE
(
closeelementW
));
write_output_buffer
(
This
->
output
,
element
->
qname
,
element
->
len
);
write_output_buffer
(
This
->
output
,
gtW
,
ARRAY_SIZE
(
gtW
));
This
->
starttagopen
=
FALSE
;
return
S_OK
;
}
static
HRESULT
WINAPI
xmlwriter_WriteName
(
IXmlWriter
*
iface
,
LPCWSTR
pwszName
)
...
...
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