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
9397fb2a
Commit
9397fb2a
authored
Nov 04, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Implement get_srcText().
parent
945dccb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
parseerror.c
dlls/msxml3/parseerror.c
+8
-2
domdoc.c
dlls/msxml3/tests/domdoc.c
+1
-1
No files found.
dlls/msxml3/parseerror.c
View file @
9397fb2a
...
...
@@ -243,8 +243,14 @@ static HRESULT WINAPI parseError_get_srcText(
BSTR
*
srcText
)
{
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
srcText
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
srcText
);
if
(
!
srcText
)
return
E_INVALIDARG
;
*
srcText
=
SysAllocString
(
This
->
srcText
);
return
S_OK
;
}
static
HRESULT
WINAPI
parseError_get_line
(
...
...
dlls/msxml3/tests/domdoc.c
View file @
9397fb2a
...
...
@@ -10767,7 +10767,7 @@ static void test_parseerror(void)
EXPECT_HR
(
hr
,
E_INVALIDARG
);
hr
=
IXMLDOMParseError_get_srcText
(
error
,
NULL
);
todo_wine
EXPECT_HR
(
hr
,
E_INVALIDARG
);
EXPECT_HR
(
hr
,
E_INVALIDARG
);
hr
=
IXMLDOMParseError_get_linepos
(
error
,
NULL
);
EXPECT_HR
(
hr
,
E_INVALIDARG
);
...
...
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