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
9336a390
Commit
9336a390
authored
Dec 11, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: GetMaxSize() is not a stub.
parent
351e5831
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
domdoc.c
dlls/msxml3/domdoc.c
+1
-1
domdoc.c
dlls/msxml3/tests/domdoc.c
+6
-2
No files found.
dlls/msxml3/domdoc.c
View file @
9336a390
...
...
@@ -803,7 +803,7 @@ static HRESULT WINAPI PersistStreamInit_GetSizeMax(
IPersistStreamInit
*
iface
,
ULARGE_INTEGER
*
pcbSize
)
{
domdoc
*
This
=
impl_from_IPersistStreamInit
(
iface
);
TRACE
(
"(%p)->(%p)
: stub!
\n
"
,
This
,
pcbSize
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
pcbSize
);
return
E_NOTIMPL
;
}
...
...
dlls/msxml3/tests/domdoc.c
View file @
9336a390
...
...
@@ -1755,16 +1755,20 @@ static void test_persiststreaminit(void)
{
IXMLDOMDocument
*
doc
;
IPersistStreamInit
*
streaminit
;
ULARGE_INTEGER
size
;
HRESULT
hr
;
doc
=
create_document
(
&
IID_IXMLDOMDocument
);
if
(
!
doc
)
return
;
hr
=
IXMLDOMDocument_QueryInterface
(
doc
,
&
IID_IPersistStreamInit
,
(
void
**
)
&
streaminit
);
ok
(
hr
==
S_OK
,
"failed with 0x%08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IPersistStreamInit_InitNew
(
streaminit
);
ok
(
hr
==
S_OK
,
"failed with 0x%08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
hr
=
IPersistStreamInit_GetSizeMax
(
streaminit
,
&
size
);
ok
(
hr
==
E_NOTIMPL
,
"got 0x%08x
\n
"
,
hr
);
IXMLDOMDocument_Release
(
doc
);
}
...
...
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