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
3cce31b1
Commit
3cce31b1
authored
Mar 05, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix return values for some methods needed by SAX reader.
parent
89c21a89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mxwriter.c
dlls/msxml3/mxwriter.c
+6
-6
No files found.
dlls/msxml3/mxwriter.c
View file @
3cce31b1
...
...
@@ -1155,8 +1155,8 @@ static HRESULT WINAPI SAXContentHandler_startPrefixMapping(
int
nuri
)
{
mxwriter
*
This
=
impl_from_ISAXContentHandler
(
iface
);
FIXM
E
(
"(%p)->(%s %s)
\n
"
,
This
,
debugstr_wn
(
prefix
,
nprefix
),
debugstr_wn
(
uri
,
nuri
));
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%s %s)
\n
"
,
This
,
debugstr_wn
(
prefix
,
nprefix
),
debugstr_wn
(
uri
,
nuri
));
return
S_OK
;
}
static
HRESULT
WINAPI
SAXContentHandler_endPrefixMapping
(
...
...
@@ -1165,8 +1165,8 @@ static HRESULT WINAPI SAXContentHandler_endPrefixMapping(
int
nprefix
)
{
mxwriter
*
This
=
impl_from_ISAXContentHandler
(
iface
);
FIXM
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_wn
(
prefix
,
nprefix
));
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_wn
(
prefix
,
nprefix
));
return
S_OK
;
}
static
HRESULT
WINAPI
SAXContentHandler_startElement
(
...
...
@@ -2007,8 +2007,8 @@ static HRESULT WINAPI VBSAXContentHandler_Invoke(IVBSAXContentHandler *iface, DI
static
HRESULT
WINAPI
VBSAXContentHandler_putref_documentLocator
(
IVBSAXContentHandler
*
iface
,
IVBSAXLocator
*
locator
)
{
mxwriter
*
This
=
impl_from_IVBSAXContentHandler
(
iface
);
FIXME
(
"(%p)->(%p): stub
\n
"
,
This
,
locator
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
locator
);
return
S_OK
;
}
static
HRESULT
WINAPI
VBSAXContentHandler_startDocument
(
IVBSAXContentHandler
*
iface
)
...
...
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