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
072383e0
Commit
072383e0
authored
Jul 17, 2008
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Added ISAXContentHandler_startDocument event.
parent
51c95276
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
saxreader.c
dlls/msxml3/saxreader.c
+18
-0
No files found.
dlls/msxml3/saxreader.c
View file @
072383e0
...
...
@@ -79,6 +79,23 @@ static inline saxlocator *impl_from_ISAXLocator( ISAXLocator *iface )
return
(
saxlocator
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
saxlocator
,
lpSAXLocatorVtbl
));
}
/*** LibXML callbacks ***/
static
void
libxmlStartDocument
(
void
*
ctx
)
{
saxlocator
*
This
=
ctx
;
HRESULT
hr
;
if
(
This
->
saxreader
->
contentHandler
)
{
hr
=
ISAXContentHandler_startDocument
(
This
->
saxreader
->
contentHandler
);
if
(
FAILED
(
hr
))
{
xmlStopParser
(
This
->
pParserCtxt
);
This
->
ret
=
hr
;
}
}
}
/*** ISAXLocator interface ***/
/*** IUnknown methods ***/
static
HRESULT
WINAPI
isaxlocator_QueryInterface
(
ISAXLocator
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
...
...
@@ -875,6 +892,7 @@ HRESULT SAXXMLReader_create(IUnknown *pUnkOuter, LPVOID *ppObj)
memset
(
&
reader
->
sax
,
0
,
sizeof
(
xmlSAXHandler
));
reader
->
sax
.
initialized
=
XML_SAX2_MAGIC
;
reader
->
sax
.
startDocument
=
libxmlStartDocument
;
*
ppObj
=
&
reader
->
lpVtbl
;
...
...
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